From a91be9352faad5e29728cc7e7e344eb5690096be Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Tue, 14 Jul 1998 16:34:48 +0000 Subject: macro and GtkType fixups. Tue Jul 14 11:41:38 1998 Tim Janik * gtk/gtkdialog.h: * gtk/gtkseparator.h: * gtk/gtkhseparator.h: * gtk/gtkvseparator.h: macro and GtkType fixups. --- gtk/gtkseparator.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gtk/gtkseparator.c') diff --git a/gtk/gtkseparator.c b/gtk/gtkseparator.c index 8aa612391e..e0a4a0e668 100644 --- a/gtk/gtkseparator.c +++ b/gtk/gtkseparator.c @@ -23,10 +23,10 @@ static void gtk_separator_class_init (GtkSeparatorClass *klass); static void gtk_separator_init (GtkSeparator *separator); -guint +GtkType gtk_separator_get_type (void) { - static guint separator_type = 0; + static GtkType separator_type = 0; if (!separator_type) { @@ -42,7 +42,7 @@ gtk_separator_get_type (void) (GtkClassInitFunc) NULL, }; - separator_type = gtk_type_unique (gtk_widget_get_type (), &separator_info); + separator_type = gtk_type_unique (GTK_TYPE_WIDGET, &separator_info); } return separator_type; -- cgit v1.2.1