Code cleanup. (gtk_separator_menu_item_class_init): Fix bugs in this code.

Mon Oct 29 19:18:35 2001  Jonathan Blandford  <jrb@redhat.com>

	* gtk/gtkseparatormenuitem.c: Code cleanup.
	(gtk_separator_menu_item_class_init): Fix bugs in this code.
This commit is contained in:
Jonathan Blandford
2001-10-30 00:24:08 +00:00
committed by Jonathan Blandford
parent 7c12bae85c
commit 44a70fc239
9 changed files with 56 additions and 21 deletions

View File

@ -1,3 +1,8 @@
Mon Oct 29 19:18:35 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkseparatormenuitem.c: Code cleanup.
(gtk_separator_menu_item_class_init): Fix bugs in this code.
2001-10-29 jacob berkman <jacob@ximian.com> 2001-10-29 jacob berkman <jacob@ximian.com>
* gdk/Makefile.am (LDFLAGS): * gdk/Makefile.am (LDFLAGS):

View File

@ -1,3 +1,8 @@
Mon Oct 29 19:18:35 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkseparatormenuitem.c: Code cleanup.
(gtk_separator_menu_item_class_init): Fix bugs in this code.
2001-10-29 jacob berkman <jacob@ximian.com> 2001-10-29 jacob berkman <jacob@ximian.com>
* gdk/Makefile.am (LDFLAGS): * gdk/Makefile.am (LDFLAGS):

View File

@ -1,3 +1,8 @@
Mon Oct 29 19:18:35 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkseparatormenuitem.c: Code cleanup.
(gtk_separator_menu_item_class_init): Fix bugs in this code.
2001-10-29 jacob berkman <jacob@ximian.com> 2001-10-29 jacob berkman <jacob@ximian.com>
* gdk/Makefile.am (LDFLAGS): * gdk/Makefile.am (LDFLAGS):

View File

@ -1,3 +1,8 @@
Mon Oct 29 19:18:35 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkseparatormenuitem.c: Code cleanup.
(gtk_separator_menu_item_class_init): Fix bugs in this code.
2001-10-29 jacob berkman <jacob@ximian.com> 2001-10-29 jacob berkman <jacob@ximian.com>
* gdk/Makefile.am (LDFLAGS): * gdk/Makefile.am (LDFLAGS):

View File

@ -1,3 +1,8 @@
Mon Oct 29 19:18:35 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkseparatormenuitem.c: Code cleanup.
(gtk_separator_menu_item_class_init): Fix bugs in this code.
2001-10-29 jacob berkman <jacob@ximian.com> 2001-10-29 jacob berkman <jacob@ximian.com>
* gdk/Makefile.am (LDFLAGS): * gdk/Makefile.am (LDFLAGS):

View File

@ -1,3 +1,8 @@
Mon Oct 29 19:18:35 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkseparatormenuitem.c: Code cleanup.
(gtk_separator_menu_item_class_init): Fix bugs in this code.
2001-10-29 jacob berkman <jacob@ximian.com> 2001-10-29 jacob berkman <jacob@ximian.com>
* gdk/Makefile.am (LDFLAGS): * gdk/Makefile.am (LDFLAGS):

View File

@ -1,3 +1,8 @@
Mon Oct 29 19:18:35 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkseparatormenuitem.c: Code cleanup.
(gtk_separator_menu_item_class_init): Fix bugs in this code.
2001-10-29 jacob berkman <jacob@ximian.com> 2001-10-29 jacob berkman <jacob@ximian.com>
* gdk/Makefile.am (LDFLAGS): * gdk/Makefile.am (LDFLAGS):

View File

@ -26,14 +26,12 @@
#include "gtkseparatormenuitem.h" #include "gtkseparatormenuitem.h"
static void gtk_separator_menu_item_class_init (GtkSeparatorMenuItemClass *klass); static void gtk_separator_menu_item_class_init (GtkSeparatorMenuItemClass *class);
static GtkMenuItemClass *parent_class; GType
GtkType
gtk_separator_menu_item_get_type (void) gtk_separator_menu_item_get_type (void)
{ {
static GtkType separator_menu_item_type = 0; static GType separator_menu_item_type = 0;
if (!separator_menu_item_type) if (!separator_menu_item_type)
{ {
@ -46,24 +44,26 @@ gtk_separator_menu_item_get_type (void)
NULL, /* class_finalize */ NULL, /* class_finalize */
NULL, /* class_data */ NULL, /* class_data */
sizeof (GtkSeparatorMenuItem), sizeof (GtkSeparatorMenuItem),
16, /* n_preallocs */ 0, /* n_preallocs */
(GInstanceInitFunc) NULL, NULL, /* instance_init */
}; };
separator_menu_item_type = g_type_register_static (GTK_TYPE_MENU_ITEM, "GtkSeparatorMenuItem", &separator_menu_item_info, 0); separator_menu_item_type =
g_type_register_static (GTK_TYPE_MENU_ITEM, "GtkSeparatorMenuItem",
&separator_menu_item_info, 0);
} }
return separator_menu_item_type; return separator_menu_item_type;
} }
static void static void
gtk_separator_menu_item_class_init (GtkSeparatorMenuItemClass *klass) gtk_separator_menu_item_class_init (GtkSeparatorMenuItemClass *class)
{ {
parent_class = gtk_type_class (gtk_menu_item_get_type ()); GTK_CONTAINER_CLASS (class)->child_type = NULL;
} }
GtkWidget* GtkWidget *
gtk_separator_menu_item_new (void) gtk_separator_menu_item_new (void)
{ {
return GTK_WIDGET (gtk_type_new (gtk_separator_menu_item_get_type ())); return g_object_new (GTK_TYPE_SEPARATOR_MENU_ITEM, NULL);
} }

View File

@ -58,7 +58,7 @@ struct _GtkSeparatorMenuItemClass
}; };
GtkType gtk_separator_menu_item_get_type (void) G_GNUC_CONST; GType gtk_separator_menu_item_get_type (void) G_GNUC_CONST;
GtkWidget* gtk_separator_menu_item_new (void); GtkWidget* gtk_separator_menu_item_new (void);