summaryrefslogtreecommitdiff
path: root/gtk/gtkseparator.c
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>1998-07-14 16:34:48 +0000
committerTim Janik <timj@src.gnome.org>1998-07-14 16:34:48 +0000
commita91be9352faad5e29728cc7e7e344eb5690096be (patch)
treeee11fce117e15cf41b985b2b79e565552d970ed2 /gtk/gtkseparator.c
parentda355feec6ec673ac09f1b29f618bd9b444a3f47 (diff)
downloadgtk+-a91be9352faad5e29728cc7e7e344eb5690096be.tar.gz
macro and GtkType fixups.
Tue Jul 14 11:41:38 1998 Tim Janik <timj@gtk.org> * gtk/gtkdialog.h: * gtk/gtkseparator.h: * gtk/gtkhseparator.h: * gtk/gtkvseparator.h: macro and GtkType fixups.
Diffstat (limited to 'gtk/gtkseparator.c')
-rw-r--r--gtk/gtkseparator.c6
1 files changed, 3 insertions, 3 deletions
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;