mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-12 05:39:21 +01:00
Use gssize instead of gsize as type of the pos and len arguments. (#71964)
2002-02-20 Daniel Elstner <daniel.elstner@gmx.net> * glib/gstring.[ch] (g_string_erase): Use gssize instead of gsize as type of the pos and len arguments. (#71964)
This commit is contained in:
parent
ec2b9edc39
commit
9d3f6abacb
@ -1,3 +1,8 @@
|
||||
2002-02-20 Daniel Elstner <daniel.elstner@gmx.net>
|
||||
|
||||
* glib/gstring.[ch] (g_string_erase): Use gssize instead of
|
||||
gsize as type of the pos and len arguments. (#71964)
|
||||
|
||||
2002-02-20 Simos Xenitellis <simos@hellug.gr>
|
||||
|
||||
* configure.in: Added el to ALL_LINGUAS (Greek language).
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-02-20 Daniel Elstner <daniel.elstner@gmx.net>
|
||||
|
||||
* glib/gstring.[ch] (g_string_erase): Use gssize instead of
|
||||
gsize as type of the pos and len arguments. (#71964)
|
||||
|
||||
2002-02-20 Simos Xenitellis <simos@hellug.gr>
|
||||
|
||||
* configure.in: Added el to ALL_LINGUAS (Greek language).
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-02-20 Daniel Elstner <daniel.elstner@gmx.net>
|
||||
|
||||
* glib/gstring.[ch] (g_string_erase): Use gssize instead of
|
||||
gsize as type of the pos and len arguments. (#71964)
|
||||
|
||||
2002-02-20 Simos Xenitellis <simos@hellug.gr>
|
||||
|
||||
* configure.in: Added el to ALL_LINGUAS (Greek language).
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-02-20 Daniel Elstner <daniel.elstner@gmx.net>
|
||||
|
||||
* glib/gstring.[ch] (g_string_erase): Use gssize instead of
|
||||
gsize as type of the pos and len arguments. (#71964)
|
||||
|
||||
2002-02-20 Simos Xenitellis <simos@hellug.gr>
|
||||
|
||||
* configure.in: Added el to ALL_LINGUAS (Greek language).
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-02-20 Daniel Elstner <daniel.elstner@gmx.net>
|
||||
|
||||
* glib/gstring.[ch] (g_string_erase): Use gssize instead of
|
||||
gsize as type of the pos and len arguments. (#71964)
|
||||
|
||||
2002-02-20 Simos Xenitellis <simos@hellug.gr>
|
||||
|
||||
* configure.in: Added el to ALL_LINGUAS (Greek language).
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-02-20 Daniel Elstner <daniel.elstner@gmx.net>
|
||||
|
||||
* glib/gstring.[ch] (g_string_erase): Use gssize instead of
|
||||
gsize as type of the pos and len arguments. (#71964)
|
||||
|
||||
2002-02-20 Simos Xenitellis <simos@hellug.gr>
|
||||
|
||||
* configure.in: Added el to ALL_LINGUAS (Greek language).
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-02-20 Daniel Elstner <daniel.elstner@gmx.net>
|
||||
|
||||
* glib/gstring.[ch] (g_string_erase): Use gssize instead of
|
||||
gsize as type of the pos and len arguments. (#71964)
|
||||
|
||||
2002-02-20 Simos Xenitellis <simos@hellug.gr>
|
||||
|
||||
* configure.in: Added el to ALL_LINGUAS (Greek language).
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-02-20 Daniel Elstner <daniel.elstner@gmx.net>
|
||||
|
||||
* glib/gstring.[ch] (g_string_erase): Use gssize instead of
|
||||
gsize as type of the pos and len arguments. (#71964)
|
||||
|
||||
2002-02-20 Simos Xenitellis <simos@hellug.gr>
|
||||
|
||||
* configure.in: Added el to ALL_LINGUAS (Greek language).
|
||||
|
@ -585,8 +585,8 @@ g_string_insert_unichar (GString *string,
|
||||
|
||||
GString*
|
||||
g_string_erase (GString *string,
|
||||
gsize pos,
|
||||
gsize len)
|
||||
gssize pos,
|
||||
gssize len)
|
||||
{
|
||||
g_return_val_if_fail (string != NULL, NULL);
|
||||
g_return_val_if_fail (pos >= 0, string);
|
||||
|
@ -101,8 +101,8 @@ GString* g_string_insert_unichar (GString *string,
|
||||
gssize pos,
|
||||
gunichar wc);
|
||||
GString* g_string_erase (GString *string,
|
||||
gsize pos,
|
||||
gsize len);
|
||||
gssize pos,
|
||||
gssize len);
|
||||
GString* g_string_ascii_down (GString *string);
|
||||
GString* g_string_ascii_up (GString *string);
|
||||
void g_string_printf (GString *string,
|
||||
|
Loading…
x
Reference in New Issue
Block a user