]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkseparatormenuitem.c
wayland: Add another cursor (left-ptr)
[~andy/gtk] / gtk / gtkseparatormenuitem.c
index e59de238f59ab2ccde66e60967c08df3857f27a5..44ebd97dfa03f7a73d0859764e999a906ae99e10 100644 (file)
 
 #include "config.h"
 #include "gtkseparatormenuitem.h"
-#include "gtkalias.h"
+
+/**
+ * SECTION:gtkseparatormenuitem
+ * @Short_description: A separator used in menus
+ * @Title: GtkSeparatorMenuItem
+ *
+ * The #GtkSeparatorMenuItem is a separator used to group
+ * items within a menu. It displays a horizontal line with a shadow to
+ * make it appear sunken into the interface.
+ */
+
 
 G_DEFINE_TYPE (GtkSeparatorMenuItem, gtk_separator_menu_item, GTK_TYPE_MENU_ITEM)
 
@@ -41,11 +51,15 @@ gtk_separator_menu_item_init (GtkSeparatorMenuItem *item)
 {
 }
 
+/**
+ * gtk_separator_menu_item_new:
+ *
+ * Creates a new #GtkSeparatorMenuItem.
+ *
+ * Returns: a new #GtkSeparatorMenuItem.
+ */
 GtkWidget *
 gtk_separator_menu_item_new (void)
 {
   return g_object_new (GTK_TYPE_SEPARATOR_MENU_ITEM, NULL);
 }
-
-#define __GTK_SEPARATOR_MENU_ITEM_C__
-#include "gtkaliasdef.c"