From 80221d816eeb98f0df38e0243390033c614952f3 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Tue, 28 Nov 2017 22:12:43 +0300 Subject: Source files converted to utf-8 --- protocols/Gadu-Gadu/src/avatar.cpp | 2 +- protocols/Gadu-Gadu/src/core.cpp | 2 +- protocols/Gadu-Gadu/src/dynstuff.cpp | 112 +++++++++++++++--------------- protocols/Gadu-Gadu/src/dynstuff.h | 4 +- protocols/Gadu-Gadu/src/gg.cpp | 2 +- protocols/Gadu-Gadu/src/gg.h | 2 +- protocols/Gadu-Gadu/src/gg_proto.cpp | 2 +- protocols/Gadu-Gadu/src/gg_proto.h | 2 +- protocols/Gadu-Gadu/src/image.cpp | 2 +- protocols/Gadu-Gadu/src/libgadu/win32.cpp | 2 +- protocols/Gadu-Gadu/src/libgadu/win32.h | 2 +- protocols/Gadu-Gadu/src/links.cpp | 2 +- protocols/Gadu-Gadu/src/oauth.cpp | 2 +- protocols/Gadu-Gadu/src/popups.cpp | 2 +- protocols/Gadu-Gadu/src/services.cpp | 2 +- protocols/Gadu-Gadu/src/sessions.cpp | 2 +- protocols/Gadu-Gadu/src/version.h | 4 +- 17 files changed, 74 insertions(+), 74 deletions(-) (limited to 'protocols/Gadu-Gadu/src') diff --git a/protocols/Gadu-Gadu/src/avatar.cpp b/protocols/Gadu-Gadu/src/avatar.cpp index 975d3720b4..6fecc850e1 100644 --- a/protocols/Gadu-Gadu/src/avatar.cpp +++ b/protocols/Gadu-Gadu/src/avatar.cpp @@ -1,7 +1,7 @@ //////////////////////////////////////////////////////////////////////////////// // Gadu-Gadu Plugin for Miranda IM // -// Copyright (c) 2009-2012 Bartosz Białek +// Copyright (c) 2009-2012 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/core.cpp b/protocols/Gadu-Gadu/src/core.cpp index a9048fe0c8..881c95792d 100644 --- a/protocols/Gadu-Gadu/src/core.cpp +++ b/protocols/Gadu-Gadu/src/core.cpp @@ -2,7 +2,7 @@ // Gadu-Gadu Plugin for Miranda IM // // Copyright (c) 2003-2009 Adam Strzelecki -// Copyright (c) 2009-2012 Bartosz Białek +// Copyright (c) 2009-2012 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/dynstuff.cpp b/protocols/Gadu-Gadu/src/dynstuff.cpp index 275a273aff..520a53bb51 100644 --- a/protocols/Gadu-Gadu/src/dynstuff.cpp +++ b/protocols/Gadu-Gadu/src/dynstuff.cpp @@ -28,15 +28,15 @@ /* * list_add_sorted() * - * dodaje do listy dany element. przy okazji może też skopiować zawartość. - * jeśli poda się jako ostatni parametr funkcję porównującą zawartość - * elementów, może posortować od razu. + * dodaje do listy dany element. przy okazji moїe teї skopiowaĐś zawartoœМ. + * jeÂśli poda siĐş jako ostatni parametr funkcjĐş porуwnujÂącÂą zawartoœМ + * elementуw, moїe posortowaĐś od razu. * - * - list - wskaźnik do listy, - * - data - wskaźnik do elementu, - * - alloc_size - rozmiar elementu, jeśli chcemy go skopiować. + * - list - wskaјnik do listy, + * - data - wskaјnik do elementu, + * - alloc_size - rozmiar elementu, jeÂśli chcemy go skopiowaĐś. * - * zwraca wskaźnik zaalokowanego elementu lub NULL w przpadku błędu. + * zwraca wskaјnik zaalokowanego elementu lub NULL w przpadku bікdu. */ void *list_add_sorted(list_t *list, void *data, int alloc_size, int (*comparision)(void *, void *)) { @@ -90,7 +90,7 @@ void *list_add_sorted(list_t *list, void *data, int alloc_size, int (*comparisio /* * list_add() * - * wrapper do list_add_sorted(), który zachowuje poprzednią składnię. + * wrapper do list_add_sorted(), ktуry zachowuje poprzedniÂą skіadniĐş. */ void *list_add(list_t *list, void *data, int alloc_size) { @@ -102,9 +102,9 @@ void *list_add(list_t *list, void *data, int alloc_size) * * usuwa z listy wpis z podanym elementem. * - * - list - wskaźnik do listy, + * - list - wskaјnik do listy, * - data - element, - * - free_data - zwolnić pamięć po elemencie. + * - free_data - zwolniĐś pamiкМ po elemencie. */ int list_remove(list_t *list, void *data, int free_data) { @@ -138,7 +138,7 @@ int list_remove(list_t *list, void *data, int free_data) /* * list_count() * - * zwraca ilość elementów w danej liście. + * zwraca iloœМ elementуw w danej liÂście. * * - list - lista. */ @@ -158,7 +158,7 @@ int list_count(list_t list) * niszczy wszystkie elementy listy. * * - list - lista, - * - free_data - czy zwalniać bufor danych? + * - free_data - czy zwalniaĐś bufor danych? */ int list_destroy(list_t list, int free_data) { @@ -181,10 +181,10 @@ int list_destroy(list_t list, int free_data) /* * string_realloc() * - * upewnia się, że w stringu będzie wystarczająco dużo miejsca. + * upewnia siĐş, їe w stringu bĐşdzie wystarczajÂąco duїo miejsca. * - * - s - ciąg znaków, - * - count - wymagana ilość znaków (bez końcowego '\0'). + * - s - ciÂąg znakуw, + * - count - wymagana iloœМ znakуw (bez koсcowego '\0'). */ static void string_realloc(string_t s, int count) { @@ -204,10 +204,10 @@ static void string_realloc(string_t s, int count) /* * string_append_c() * - * dodaje do danego ciągu jeden znak, alokując przy tym odpowiednią ilość - * pamięci. + * dodaje do danego ciÂągu jeden znak, alokujÂąc przy tym odpowiedniÂą iloœМ + * pamiĐşci. * - * - s - ciąg znaków. + * - s - ciÂąg znakуw. * - c - znaczek do dopisania. */ int string_append_c(string_t s, char c) @@ -228,11 +228,11 @@ int string_append_c(string_t s, char c) /* * string_append_n() * - * dodaje tekst do bufora alokując odpowiednią ilość pamięci. + * dodaje tekst do bufora alokujÂąc odpowiedniÂą iloœМ pamiĐşci. * - * - s - ciąg znaków, + * - s - ciÂąg znakуw, * - str - tekst do dopisania, - * - count - ile znaków tego tekstu dopisać? (-1 znaczy, że cały). + * - count - ile znakуw tego tekstu dopisaĐś? (-1 znaczy, їe caіy). */ int string_append_n(string_t s, const char *str, int count) { @@ -264,10 +264,10 @@ int string_append(string_t s, const char *str) * * wstawia tekst w podane miejsce bufora. * - * - s - ciąg znaków, - * - index - miejsce, gdzie mamy wpisać (liczone od 0), + * - s - ciÂąg znakуw, + * - index - miejsce, gdzie mamy wpisaĐś (liczone od 0), * - str - tekst do dopisania, - * - count - ilość znaków do dopisania (-1 znaczy, że wszystkie). + * - count - iloœМ znakуw do dopisania (-1 znaczy, їe wszystkie). */ void string_insert_n(string_t s, int index, const char *str, int count) { @@ -296,11 +296,11 @@ void string_insert(string_t s, int index, const char *str) /* * string_init() * - * inicjuje strukturę string. alokuje pamięć i przypisuje pierwszą wartość. + * inicjuje strukturĐş string. alokuje pamiкМ i przypisuje pierwszÂą wartoœМ. * - * - value - jeśli NULL, ciąg jest pusty, inaczej kopiuje tam. + * - value - jeÂśli NULL, ciÂąg jest pusty, inaczej kopiuje tam. * - * zwraca zaalokowaną strukturę `string'. + * zwraca zaalokowanÂą strukturĐş `string'. */ string_t string_init(const char *value) { @@ -319,9 +319,9 @@ string_t string_init(const char *value) /* * string_clear() * - * czyści zawartość struktury `string'. + * czyÂści zawartoœМ struktury `string'. * - * - s - ciąg znaków. + * - s - ciÂąg znakуw. */ void string_clear(string_t s) { @@ -340,13 +340,13 @@ void string_clear(string_t s) /* * string_free() * - * zwalnia pamięć po strukturze string i może też zwolnić pamięć po samym - * ciągu znaków. + * zwalnia pamiкМ po strukturze string i moїe teї zwolniĐś pamiкМ po samym + * ciÂągu znakуw. * - * - s - struktura, którą wycinamy, - * - free_string - zwolnić pamięć po ciągu znaków? + * - s - struktura, ktуrÂą wycinamy, + * - free_string - zwolniĐś pamiкМ po ciÂągu znakуw? * - * jeśli free_string=0 zwraca wskaźnik do ciągu, inaczej NULL. + * jeÂśli free_string=0 zwraca wskaјnik do ciÂągu, inaczej NULL. */ char *string_free(string_t s, int free_string) { @@ -368,14 +368,14 @@ char *string_free(string_t s, int free_string) /* * _itoa() * - * prosta funkcja, która zwraca tekstową reprezentację liczby. w obrębie - * danego wywołania jakiejś funkcji lub wyrażenia może być wywołania 10 - * razy, ponieważ tyle mamy statycznych buforów. lepsze to niż ciągłe - * tworzenie tymczasowych buforów na stosie i sprintf()owanie. + * prosta funkcja, ktуra zwraca tekstowÂą reprezentacjĐş liczby. w obrĐşbie + * danego wywoіania jakiejÂś funkcji lub wyraїenia moїe byĐś wywoіania 10 + * razy, poniewaї tyle mamy statycznych buforуw. lepsze to niї ciÂągіe + * tworzenie tymczasowych buforуw na stosie i sprintf()owanie. * * - i - liczba do zamiany. * - * zwraca adres do bufora, którego _NIE_NALEŻY_ zwalniać. + * zwraca adres do bufora, ktуrego _NIE_NALEЇY_ zwalniaĐś. */ const char *ditoa(long int i) @@ -394,19 +394,19 @@ const char *ditoa(long int i) /* * array_make() * - * tworzy tablicę tekstów z jednego, rozdzielonego podanymi znakami. + * tworzy tablicĐş tekstуw z jednego, rozdzielonego podanymi znakami. * - * - string - tekst wejściowy, - * - sep - lista elementów oddzielających, - * - max - maksymalna ilość elementów tablicy. jeśli równe 0, nie ma - * ograniczeń rozmiaru tablicy. - * - trim - czy większą ilość elementów oddzielających traktować jako - * jeden (na przykład spacje, tabulacja itp.) - * - quotes - czy pola mogą być zapisywane w cudzysłowiach lub + * - string - tekst wejÂściowy, + * - sep - lista elementуw oddzielajÂących, + * - max - maksymalna iloœМ elementуw tablicy. jeÂśli rуwne 0, nie ma + * ograniczeс rozmiaru tablicy. + * - trim - czy wiĐşkszÂą iloœМ elementуw oddzielajÂących traktowaĐś jako + * jeden (na przykіad spacje, tabulacja itp.) + * - quotes - czy pola mogÂą byĐś zapisywane w cudzysіowiach lub * apostrofach z escapowanymi znakami. * - * zaalokowaną tablicę z zaalokowanymi ciągami znaków, którą należy - * zwolnić funkcją array_free() + * zaalokowanÂą tablicĐş z zaalokowanymi ciÂągami znakуw, ktуrÂą naleїy + * zwolniĐś funkcjÂą array_free() */ char **array_make(const char *string, const char *sep, int max, int trim, int quotes) { @@ -505,7 +505,7 @@ failure: /* * array_count() * - * zwraca ilość elementów tablicy. + * zwraca iloœМ elementуw tablicy. */ int array_count(char **array) { @@ -539,13 +539,13 @@ void array_add(char ***array, char *string) /* * array_join() * - * łączy elementy tablicy w jeden string oddzielając elementy odpowiednim + * і±czy elementy tablicy w jeden string oddzielajÂąc elementy odpowiednim * separatorem. * - * - array - wskaźnik do tablicy, + * - array - wskaјnik do tablicy, * - sep - seperator. * - * zwrócony ciąg znaków należy zwolnić. + * zwrуcony ciÂąg znakуw naleїy zwolniĐś. */ char *array_join(char **array, const char *sep) { @@ -569,8 +569,8 @@ char *array_join(char **array, const char *sep) * stwierdza, czy tablica zawiera podany element. * * - array - tablica, - * - string - szukany ciąg znaków, - * - casesensitive - czy mamy zwracać uwagę na wielkość znaków? + * - string - szukany ciÂąg znakуw, + * - casesensitive - czy mamy zwracaĐś uwagĐş na wielkoœМ znakуw? * * 0/1 */ @@ -594,7 +594,7 @@ int array_contains(char **array, const char *string, int casesensitive) /* * array_free() * - * zwalnia pamieć zajmowaną przez tablicę. + * zwalnia pamieĐś zajmowanÂą przez tablicĐş. */ void array_free(char **array) { diff --git a/protocols/Gadu-Gadu/src/dynstuff.h b/protocols/Gadu-Gadu/src/dynstuff.h index 8e36c67ede..c176207076 100644 --- a/protocols/Gadu-Gadu/src/dynstuff.h +++ b/protocols/Gadu-Gadu/src/dynstuff.h @@ -54,7 +54,7 @@ void string_insert_n(string_t s, int index, const char *str, int count); void string_clear(string_t s); char *string_free(string_t s, int free_string); -/* tablice stringów */ +/* tablice stringуw */ char **array_make(const char *string, const char *sep, int max, int trim, int quotes); char *array_join(char **array, const char *sep); @@ -63,7 +63,7 @@ int array_count(char **array); int array_contains(char **array, const char *string, int casesensitive); void array_free(char **array); -/* rozszerzenia libców */ +/* rozszerzenia libcуw */ const char *ditoa(long int i); diff --git a/protocols/Gadu-Gadu/src/gg.cpp b/protocols/Gadu-Gadu/src/gg.cpp index 9f343b52cd..b15b9bedc1 100644 --- a/protocols/Gadu-Gadu/src/gg.cpp +++ b/protocols/Gadu-Gadu/src/gg.cpp @@ -2,7 +2,7 @@ // Gadu-Gadu Plugin for Miranda IM // // Copyright (c) 2003-2009 Adam Strzelecki -// Copyright (c) 2009-2012 Bartosz Białek +// Copyright (c) 2009-2012 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/gg.h b/protocols/Gadu-Gadu/src/gg.h index f1848d2e5e..34465ea821 100644 --- a/protocols/Gadu-Gadu/src/gg.h +++ b/protocols/Gadu-Gadu/src/gg.h @@ -2,7 +2,7 @@ // Gadu-Gadu Plugin for Miranda IM // // Copyright (c) 2003-2009 Adam Strzelecki -// Copyright (c) 2009-2012 Bartosz Białek +// Copyright (c) 2009-2012 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/gg_proto.cpp b/protocols/Gadu-Gadu/src/gg_proto.cpp index d0ff63102f..7e2a537d1d 100644 --- a/protocols/Gadu-Gadu/src/gg_proto.cpp +++ b/protocols/Gadu-Gadu/src/gg_proto.cpp @@ -2,7 +2,7 @@ // Gadu-Gadu Plugin for Miranda IM // // Copyright (c) 2003-2009 Adam Strzelecki -// Copyright (c) 2009-2012 Bartosz Białek +// Copyright (c) 2009-2012 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/gg_proto.h b/protocols/Gadu-Gadu/src/gg_proto.h index 9107c49cdd..e5d39c6257 100644 --- a/protocols/Gadu-Gadu/src/gg_proto.h +++ b/protocols/Gadu-Gadu/src/gg_proto.h @@ -2,7 +2,7 @@ // Gadu-Gadu Plugin for Miranda IM // // Copyright (c) 2003-2009 Adam Strzelecki -// Copyright (c) 2009-2012 Bartosz Białek +// Copyright (c) 2009-2012 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/image.cpp b/protocols/Gadu-Gadu/src/image.cpp index 0cfef60aed..a0f408d38f 100644 --- a/protocols/Gadu-Gadu/src/image.cpp +++ b/protocols/Gadu-Gadu/src/image.cpp @@ -2,7 +2,7 @@ // Gadu-Gadu Plugin for Miranda IM // // Copyright (c) 2003-2009 Adam Strzelecki -// Copyright (c) 2009-2012 Bartosz Białek +// Copyright (c) 2009-2012 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/libgadu/win32.cpp b/protocols/Gadu-Gadu/src/libgadu/win32.cpp index 55da0d8e0d..414325d0b1 100644 --- a/protocols/Gadu-Gadu/src/libgadu/win32.cpp +++ b/protocols/Gadu-Gadu/src/libgadu/win32.cpp @@ -2,7 +2,7 @@ // Gadu-Gadu Plugin for Miranda IM // // Copyright (c) 2003-2009 Adam Strzelecki -// Copyright (c) 2009-2010 Bartosz Białek +// Copyright (c) 2009-2010 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/libgadu/win32.h b/protocols/Gadu-Gadu/src/libgadu/win32.h index fdc5017279..bf30d6f75e 100644 --- a/protocols/Gadu-Gadu/src/libgadu/win32.h +++ b/protocols/Gadu-Gadu/src/libgadu/win32.h @@ -2,7 +2,7 @@ // Gadu-Gadu Plugin for Miranda IM // // Copyright (c) 2003-2009 Adam Strzelecki -// Copyright (c) 2009-2010 Bartosz Białek +// Copyright (c) 2009-2010 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/links.cpp b/protocols/Gadu-Gadu/src/links.cpp index 6463c5ccf6..03b6b90a81 100644 --- a/protocols/Gadu-Gadu/src/links.cpp +++ b/protocols/Gadu-Gadu/src/links.cpp @@ -1,7 +1,7 @@ //////////////////////////////////////////////////////////////////////////////// // Gadu-Gadu Plugin for Miranda IM // -// Copyright (c) 2009-2012 Bartosz Białek +// Copyright (c) 2009-2012 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/oauth.cpp b/protocols/Gadu-Gadu/src/oauth.cpp index 5c0f21cf74..e2339bf4eb 100644 --- a/protocols/Gadu-Gadu/src/oauth.cpp +++ b/protocols/Gadu-Gadu/src/oauth.cpp @@ -1,7 +1,7 @@ //////////////////////////////////////////////////////////////////////////////// // Gadu-Gadu Plugin for Miranda IM // -// Copyright (c) 2010 Bartosz Białek +// Copyright (c) 2010 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/popups.cpp b/protocols/Gadu-Gadu/src/popups.cpp index a1527e3b46..167130a027 100644 --- a/protocols/Gadu-Gadu/src/popups.cpp +++ b/protocols/Gadu-Gadu/src/popups.cpp @@ -1,7 +1,7 @@ //////////////////////////////////////////////////////////////////////////////// // Gadu-Gadu Plugin for Miranda IM // -// Copyright (c) 2011-2012 Bartosz Białek +// Copyright (c) 2011-2012 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/services.cpp b/protocols/Gadu-Gadu/src/services.cpp index cd060f3609..6137887bf1 100644 --- a/protocols/Gadu-Gadu/src/services.cpp +++ b/protocols/Gadu-Gadu/src/services.cpp @@ -2,7 +2,7 @@ // Gadu-Gadu Plugin for Miranda IM // // Copyright (c) 2003-2009 Adam Strzelecki -// Copyright (c) 2009-2012 Bartosz Białek +// Copyright (c) 2009-2012 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/sessions.cpp b/protocols/Gadu-Gadu/src/sessions.cpp index f13ddecb2b..327d091981 100644 --- a/protocols/Gadu-Gadu/src/sessions.cpp +++ b/protocols/Gadu-Gadu/src/sessions.cpp @@ -1,7 +1,7 @@ //////////////////////////////////////////////////////////////////////////////// // Gadu-Gadu Plugin for Miranda IM // -// Copyright (c) 2009-2012 Bartosz Białek +// Copyright (c) 2009-2012 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/protocols/Gadu-Gadu/src/version.h b/protocols/Gadu-Gadu/src/version.h index e4add85bd9..8ec02a91d6 100644 --- a/protocols/Gadu-Gadu/src/version.h +++ b/protocols/Gadu-Gadu/src/version.h @@ -1,7 +1,7 @@ //////////////////////////////////////////////////////////////////////////////// // Gadu-Gadu Plugin for Miranda IM // -// Copyright (c) 2010 Bartosz Białek +// Copyright (c) 2010 Bartosz Biaіek // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -29,5 +29,5 @@ #define __DESCRIPTION "Gadu-Gadu protocol support for Miranda NG." #define __AUTHOR "Bartosz Bialek, Adam Strzelecki" #define __AUTHOREMAIL "dezred"/*antispam*/"@"/*antispam*/"gmail"/*antispam*/"."/*antispam*/"com" -#define __COPYRIGHT "Š 2009-2012 Bartosz Bialek, 2003-2009 Adam Strzelecki" +#define __COPYRIGHT "Š 2009-2012 Bartosz Bialek, 2003-2009 Adam Strzelecki" #define __AUTHORWEB "https://miranda-ng.org/p/GG/" -- cgit v1.2.3