mirror of https://github.com/GNOME/gimp.git
don't ignore the return value of g_list_remove().
2006-04-10 Sven Neumann <sven@gimp.org> * libgimpmodule/gimpmoduledb.c (gimp_module_db_module_remove_func): don't ignore the return value of g_list_remove().
This commit is contained in:
parent
f0f8f04515
commit
7ccaa9d587
|
@ -1,3 +1,8 @@
|
|||
2006-04-10 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* libgimpmodule/gimpmoduledb.c (gimp_module_db_module_remove_func):
|
||||
don't ignore the return value of g_list_remove().
|
||||
|
||||
2006-04-10 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/file/file-utils.[ch]: added file_utils_load_thumbnail() and
|
||||
|
|
|
@ -455,7 +455,8 @@ gimp_module_db_module_remove_func (gpointer data,
|
|||
gimp_module_db_module_modified,
|
||||
db);
|
||||
|
||||
g_list_remove (db->modules, module);
|
||||
db->modules = g_list_remove (db->modules, module);
|
||||
|
||||
g_signal_emit (db, db_signals[REMOVE], 0, module);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue