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().
This commit is contained in:
@ -32,14 +32,12 @@ extern "C" {
|
||||
#endif /* __cplusplus */
|
||||
|
||||
typedef enum {
|
||||
GTK_DEBUG_OBJECTS = 1 << 0,
|
||||
GTK_DEBUG_MISC = 1 << 1,
|
||||
GTK_DEBUG_SIGNALS = 1 << 2,
|
||||
GTK_DEBUG_DND = 1 << 3,
|
||||
GTK_DEBUG_PLUGSOCKET = 1 << 4,
|
||||
GTK_DEBUG_TEXT = 1 << 5,
|
||||
GTK_DEBUG_TREE = 1 << 6,
|
||||
GTK_DEBUG_UPDATES = 1 << 7
|
||||
GTK_DEBUG_MISC = 1 << 0,
|
||||
GTK_DEBUG_DND = 1 << 1,
|
||||
GTK_DEBUG_PLUGSOCKET = 1 << 2,
|
||||
GTK_DEBUG_TEXT = 1 << 3,
|
||||
GTK_DEBUG_TREE = 1 << 4,
|
||||
GTK_DEBUG_UPDATES = 1 << 5
|
||||
} GtkDebugFlag;
|
||||
|
||||
#ifdef G_ENABLE_DEBUG
|
||||
|
||||
Reference in New Issue
Block a user