forked from AuroraMiddleware/gtk
Don't reverse the order of modules when putting them in gtk_modules.
2005-01-20 Matthias Clasen <mclasen@redhat.com> * gtk/gtkmodules.c (load_module): Don't reverse the order of modules when putting them in gtk_modules. (#162676, Dennis Cranston, patch by Remus Draica)
This commit is contained in:
parent
40e322c122
commit
5af65fb673
@ -1,5 +1,9 @@
|
||||
2005-01-20 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkmodules.c (load_module): Don't reverse the order
|
||||
of modules when putting them in gtk_modules. (#162676, Dennis
|
||||
Cranston, patch by Remus Draica)
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash
|
||||
if the tree is empty. (#164669, Priit Laes)
|
||||
|
||||
|
@ -1,5 +1,9 @@
|
||||
2005-01-20 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkmodules.c (load_module): Don't reverse the order
|
||||
of modules when putting them in gtk_modules. (#162676, Dennis
|
||||
Cranston, patch by Remus Draica)
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash
|
||||
if the tree is empty. (#164669, Priit Laes)
|
||||
|
||||
|
@ -1,5 +1,9 @@
|
||||
2005-01-20 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkmodules.c (load_module): Don't reverse the order
|
||||
of modules when putting them in gtk_modules. (#162676, Dennis
|
||||
Cranston, patch by Remus Draica)
|
||||
|
||||
* gtk/gtktreeview.c (gtk_tree_view_search_move): Don't crash
|
||||
if the tree is empty. (#164669, Priit Laes)
|
||||
|
||||
|
@ -297,7 +297,7 @@ load_module (GSList *module_list,
|
||||
g_module_symbol (module, "gtk_module_display_init",
|
||||
(gpointer *) &info->display_init_func);
|
||||
|
||||
gtk_modules = g_slist_prepend (gtk_modules, info);
|
||||
gtk_modules = g_slist_append (gtk_modules, info);
|
||||
|
||||
/* display_init == NULL indicates a non-multihead aware module.
|
||||
* For these, we delay the call to init_func until first display is
|
||||
|
Loading…
Reference in New Issue
Block a user