diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2017-11-28 22:12:43 +0300 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2017-11-28 22:12:43 +0300 |
commit | 80221d816eeb98f0df38e0243390033c614952f3 (patch) | |
tree | 7618176108093921b6934343bc2f76a66ea97730 /protocols/Gadu-Gadu/src | |
parent | 25df99ba7462958f2cb9075020ec1c9a5a7c9f50 (diff) |
Source files converted to utf-8
Diffstat (limited to 'protocols/Gadu-Gadu/src')
-rw-r--r-- | protocols/Gadu-Gadu/src/avatar.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/core.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/dynstuff.cpp | 112 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/dynstuff.h | 4 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/gg.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/gg.h | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/gg_proto.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/gg_proto.h | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/image.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/libgadu/win32.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/libgadu/win32.h | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/links.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/oauth.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/popups.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/services.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/sessions.cpp | 2 | ||||
-rw-r--r-- | protocols/Gadu-Gadu/src/version.h | 4 |
17 files changed, 74 insertions, 74 deletions
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 <ono+miranda@java.pl>
-// 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 <ono+miranda@java.pl>
-// 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 <ono+miranda@java.pl>
-// 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 <ono+miranda@java.pl>
-// 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 <ono+miranda@java.pl>
-// 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 <ono+miranda@java.pl>
-// 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 <ono+miranda@java.pl>
-// 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 <ono+miranda@java.pl>
-// 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 <ono+miranda@java.pl>
-// 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/"
|