diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-01-20 13:33:44 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-01-20 13:33:44 +0000 |
commit | 5af65fb673c1ead88312912ff735055cb04d74f7 (patch) | |
tree | 0686566f50c462fe5d9a1b8c8edf52c03b4413a1 /gtk/gtkmodules.c | |
parent | 40e322c1229f08a9b8551a231e6ab59fb99b0de7 (diff) | |
download | gtk+-5af65fb673c1ead88312912ff735055cb04d74f7.tar.gz |
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)
Diffstat (limited to 'gtk/gtkmodules.c')
-rw-r--r-- | gtk/gtkmodules.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkmodules.c b/gtk/gtkmodules.c index 0bec50a574..e80a13ab61 100644 --- a/gtk/gtkmodules.c +++ b/gtk/gtkmodules.c @@ -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 |