From 89a0a894bcffc29402d4f8add87168ddd5fc6b60 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Sun, 4 Feb 2001 07:05:29 +0000 Subject: removed gtk_signal_init() compat define. Sun Feb 4 07:55:17 2001 Tim Janik * 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 * gtk/gtkdebug.h: nuke GTK_DEBUG_OBJECTS and GTK_DEBUG_SIGNALS. Sun Feb 4 07:59:57 2001 Tim Janik * 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(). --- gtk/gtkrc.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'gtk/gtkrc.h') diff --git a/gtk/gtkrc.h b/gtk/gtkrc.h index 5f281fc6cc..29f8b61a02 100644 --- a/gtk/gtkrc.h +++ b/gtk/gtkrc.h @@ -91,22 +91,24 @@ struct _GtkRcStyleClass * g_object_new (G_OBJECT_TYPE (style), NULL); * should work in most cases. */ - GtkRcStyle *(*clone) (GtkRcStyle *rc_style); + GtkRcStyle * (*clone) (GtkRcStyle *rc_style); /* Fill in engine specific parts of GtkRcStyle by parsing contents * of brackets. Returns G_TOKEN_NONE if succesful, otherwise returns * the token it expected but didn't get. */ - guint (*parse) (GtkRcStyle *rc_style, GScanner *scanner); + guint (*parse) (GtkRcStyle *rc_style, + GScanner *scanner); /* Combine RC style data from src into dest. If overriden, this * function should chain to the parent. */ - void (*merge) (GtkRcStyle *dest, GtkRcStyle *src); + void (*merge) (GtkRcStyle *dest, + GtkRcStyle *src); /* Create an empty style suitable to this RC style */ - GtkStyle *(*create_style) (GtkRcStyle *rc_style); + GtkStyle * (*create_style) (GtkRcStyle *rc_style); }; void gtk_rc_init (void); -- cgit v1.2.1