summaryrefslogtreecommitdiff
path: root/gdk/gdk.c
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>2001-02-04 07:05:29 +0000
committerTim Janik <timj@src.gnome.org>2001-02-04 07:05:29 +0000
commit89a0a894bcffc29402d4f8add87168ddd5fc6b60 (patch)
treef642964ce0b8e5d648702c3d9cc53cfddb11b2f7 /gdk/gdk.c
parentf2ceb1c46a7b5dc9e2b6baa4bcf543601dc5d986 (diff)
downloadgtk+-89a0a894bcffc29402d4f8add87168ddd5fc6b60.tar.gz
removed gtk_signal_init() compat define.
Sun Feb 4 07:55:17 2001 Tim Janik <timj@gtk.org> * gtk/gtksignal.h: removed gtk_signal_init() compat define. * gtk/gtktypeutils.[hc]: gtk_tpye_init() take an additional argument GTypeDebugFlags debug_flags and pass it on to g_type_init (); deprecated this function. * gdk/gdk.c (gdk_init_check): call g_type_init () with 0 as argument. Sun Feb 4 07:45:45 2001 Tim Janik <timj@gtk.org> * gtk/gtkdebug.h: nuke GTK_DEBUG_OBJECTS and GTK_DEBUG_SIGNALS. Sun Feb 4 07:59:57 2001 Tim Janik <timj@gtk.org> * gdk-pixbuf.h: DOH! don't include glib/gobject.h but glib-object.h, we finally need the gobject->gruntime rename. * *.c: scratched calls to g_type_init(), there's simply no point in doing that, use gtk_init().
Diffstat (limited to 'gdk/gdk.c')
-rw-r--r--gdk/gdk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdk.c b/gdk/gdk.c
index fb0a7654ed..e607d9e225 100644
--- a/gdk/gdk.c
+++ b/gdk/gdk.c
@@ -323,7 +323,7 @@ gdk_init_check (int *argc,
GDK_NOTE (MISC, g_message ("progname: \"%s\"", g_get_prgname ()));
- g_type_init ();
+ g_type_init (0);
result = _gdk_windowing_init_check (argc_orig, argv_orig);