mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
Merged from 2.4:
Sun May 16 23:23:29 2004 Matthias Clasen <maclas@gmx.de> Merged from 2.4: * glib/gcompletion.c (g_completion_add_items): (g_completion_remove_items): Remove unnecessary checks. (#142559, Morten Welinder)
This commit is contained in:
parent
38bb555ce3
commit
96ea214603
@ -1,3 +1,11 @@
|
||||
Sun May 16 23:23:29 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Merged from 2.4:
|
||||
|
||||
* glib/gcompletion.c (g_completion_add_items):
|
||||
(g_completion_remove_items): Remove unnecessary
|
||||
checks. (#142559, Morten Welinder)
|
||||
|
||||
2004-05-15 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gutils.c (g_get_any_init): [Win32] Only believe HOME if it
|
||||
|
@ -1,3 +1,11 @@
|
||||
Sun May 16 23:23:29 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Merged from 2.4:
|
||||
|
||||
* glib/gcompletion.c (g_completion_add_items):
|
||||
(g_completion_remove_items): Remove unnecessary
|
||||
checks. (#142559, Morten Welinder)
|
||||
|
||||
2004-05-15 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gutils.c (g_get_any_init): [Win32] Only believe HOME if it
|
||||
|
@ -1,3 +1,11 @@
|
||||
Sun May 16 23:23:29 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Merged from 2.4:
|
||||
|
||||
* glib/gcompletion.c (g_completion_add_items):
|
||||
(g_completion_remove_items): Remove unnecessary
|
||||
checks. (#142559, Morten Welinder)
|
||||
|
||||
2004-05-15 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gutils.c (g_get_any_init): [Win32] Only believe HOME if it
|
||||
|
@ -1,3 +1,11 @@
|
||||
Sun May 16 23:23:29 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Merged from 2.4:
|
||||
|
||||
* glib/gcompletion.c (g_completion_add_items):
|
||||
(g_completion_remove_items): Remove unnecessary
|
||||
checks. (#142559, Morten Welinder)
|
||||
|
||||
2004-05-15 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gutils.c (g_get_any_init): [Win32] Only believe HOME if it
|
||||
|
@ -1,3 +1,11 @@
|
||||
Sun May 16 23:23:29 2004 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
Merged from 2.4:
|
||||
|
||||
* glib/gcompletion.c (g_completion_add_items):
|
||||
(g_completion_remove_items): Remove unnecessary
|
||||
checks. (#142559, Morten Welinder)
|
||||
|
||||
2004-05-15 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gutils.c (g_get_any_init): [Win32] Only believe HOME if it
|
||||
|
@ -60,7 +60,6 @@ g_completion_add_items (GCompletion* cmp,
|
||||
GList* it;
|
||||
|
||||
g_return_if_fail (cmp != NULL);
|
||||
g_return_if_fail (items != NULL);
|
||||
|
||||
/* optimize adding to cache? */
|
||||
if (cmp->cache)
|
||||
@ -90,7 +89,6 @@ g_completion_remove_items (GCompletion* cmp,
|
||||
GList* it;
|
||||
|
||||
g_return_if_fail (cmp != NULL);
|
||||
g_return_if_fail (items != NULL);
|
||||
|
||||
it = items;
|
||||
while (cmp->items && it)
|
||||
|
Loading…
Reference in New Issue
Block a user