]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkseparatormenuitem.c
Display an error when we come to the root.
[~andy/gtk] / gtk / gtkseparatormenuitem.c
index 43437c4bcf1e98b750216a0361644ee83d44409b..49fe3e7639aa55449e1b146e441e67eb908e3ddd 100644 (file)
  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
  * file for a list of people on the GTK+ Team.  See the ChangeLog
  * files for a list of changes.  These files are distributed with
- * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  */
 
+#include <config.h>
 #include "gtkseparatormenuitem.h"
+#include "gtkalias.h"
 
-static void gtk_separator_menu_item_class_init (GtkSeparatorMenuItemClass *klass);
+G_DEFINE_TYPE (GtkSeparatorMenuItem, gtk_separator_menu_item, GTK_TYPE_MENU_ITEM)
 
-static GtkMenuItemClass *parent_class;
-
-GtkType
-gtk_separator_menu_item_get_type (void)
+static void
+gtk_separator_menu_item_class_init (GtkSeparatorMenuItemClass *class)
 {
-  static GtkType separator_menu_item_type = 0;
-
-  if (!separator_menu_item_type)
-    {
-      static const GTypeInfo separator_menu_item_info =
-      {
-       sizeof (GtkMenuItemClass),
-       NULL,           /* base_init */
-       NULL,           /* base_finalize */
-       (GClassInitFunc) gtk_separator_menu_item_class_init,
-       NULL,           /* class_finalize */
-       NULL,           /* class_data */
-       sizeof (GtkMenuItem),
-       16,             /* n_preallocs */
-       (GInstanceInitFunc) NULL,
-      };
-
-      separator_menu_item_type = g_type_register_static (GTK_TYPE_MENU_ITEM, "GtkSeparatorMenuItem", &separator_menu_item_info, 0);
-    }
-
-  return separator_menu_item_type;
+  GTK_CONTAINER_CLASS (class)->child_type = NULL;
 }
 
-static void
-gtk_separator_menu_item_class_init (GtkSeparatorMenuItemClass *klass)
+static void 
+gtk_separator_menu_item_init (GtkSeparatorMenuItem *item)
 {
-  parent_class = gtk_type_class (gtk_menu_item_get_type ());
 }
 
-GtkWidget*
+GtkWidget *
 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);
 }
+
+#define __GTK_SEPARATOR_MENU_ITEM_C__
+#include "gtkaliasdef.c"