diff options
author | Manish Singh <yosh@gimp.org> | 2001-12-05 02:49:32 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 2001-12-05 02:49:32 +0000 |
commit | 9605ec8a03f317f29bf9dcfd3cbb9cf79de60079 (patch) | |
tree | 959196d7f5da4da8ff896997874c8a1f2919325f /gtk/gtkmain.c | |
parent | 57f508467ec7795f97f62114054466a77985c23c (diff) | |
download | gtk+-9605ec8a03f317f29bf9dcfd3cbb9cf79de60079.tar.gz |
gtk/gtkmain.c g_module_symbol takes a gpointer *, not just a gpointer.
2001-12-04 Manish Singh <yosh@gimp.org>
* gtk/gtkmain.c
* gtk/queryimmodules.c: g_module_symbol takes a gpointer *, not just
a gpointer.
* gtk/gtkwidget.c (gtk_widget_push_composite_child): minor cosmetic
correction to docs.
* demos/gtk-demo/item_factory.c: add GTK_WINDOW() cast
Diffstat (limited to 'gtk/gtkmain.c')
-rw-r--r-- | gtk/gtkmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c index 1279df02d9..897705fd17 100644 --- a/gtk/gtkmain.c +++ b/gtk/gtkmain.c @@ -368,7 +368,7 @@ load_module (GSList *gtk_modules, { module = find_module (module_path, name); if (module && - g_module_symbol (module, "gtk_module_init", (gpointer*) &modinit_func) && + g_module_symbol (module, "gtk_module_init", (gpointer *) &modinit_func) && modinit_func) { if (!g_slist_find (gtk_modules, modinit_func)) |