diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-09-25 20:58:59 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-09-25 21:04:49 -0400 |
commit | 5ff8fe69715a7f0da56816246be7ffaa05bd5ce9 (patch) | |
tree | 8d4b5c65c9c61639b0982b98f184065e2a429b75 /gtk/gtkimagemenuitem.c | |
parent | a6151ebb9566ed39a6b100d1cca6d5eae7246201 (diff) | |
download | gtk+-5ff8fe69715a7f0da56816246be7ffaa05bd5ce9.tar.gz |
Documentation fixes
Mostly making sure that return values and varargs don't loose
their docs.
Diffstat (limited to 'gtk/gtkimagemenuitem.c')
-rw-r--r-- | gtk/gtkimagemenuitem.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gtk/gtkimagemenuitem.c b/gtk/gtkimagemenuitem.c index 480df828ea..81d0ad05a3 100644 --- a/gtk/gtkimagemenuitem.c +++ b/gtk/gtkimagemenuitem.c @@ -774,10 +774,11 @@ gtk_image_menu_item_sync_action_properties (GtkActivatable *activatable, /** * gtk_image_menu_item_new: - * @returns: a new #GtkImageMenuItem. * * Creates a new #GtkImageMenuItem with an empty label. - **/ + * + * Returns: a new #GtkImageMenuItem + */ GtkWidget* gtk_image_menu_item_new (void) { @@ -787,9 +788,10 @@ gtk_image_menu_item_new (void) /** * gtk_image_menu_item_new_with_label: * @label: the text of the menu item. - * @returns: a new #GtkImageMenuItem. * * Creates a new #GtkImageMenuItem containing a label. + * + * Returns: a new #GtkImageMenuItem. */ GtkWidget* gtk_image_menu_item_new_with_label (const gchar *label) @@ -799,16 +801,16 @@ gtk_image_menu_item_new_with_label (const gchar *label) NULL); } - /** * gtk_image_menu_item_new_with_mnemonic: * @label: the text of the menu item, with an underscore in front of the * mnemonic character - * @returns: a new #GtkImageMenuItem * * Creates a new #GtkImageMenuItem containing a label. The label * will be created using gtk_label_new_with_mnemonic(), so underscores * in @label indicate the mnemonic for the menu item. + * + * Returns: a new #GtkImageMenuItem */ GtkWidget* gtk_image_menu_item_new_with_mnemonic (const gchar *label) @@ -824,7 +826,6 @@ gtk_image_menu_item_new_with_mnemonic (const gchar *label) * @stock_id: the name of the stock item. * @accel_group: (allow-none): the #GtkAccelGroup to add the menu items * accelerator to, or %NULL. - * @returns: a new #GtkImageMenuItem. * * Creates a new #GtkImageMenuItem containing the image and text from a * stock item. Some stock ids have preprocessor macros like #GTK_STOCK_OK @@ -835,6 +836,8 @@ gtk_image_menu_item_new_with_mnemonic (const gchar *label) * appropriate path for the menu item, use gtk_stock_lookup() to look up the * standard accelerator for the stock item, and if one is found, call * gtk_accel_map_add_entry() to register it. + * + * Returns: a new #GtkImageMenuItem. */ GtkWidget* gtk_image_menu_item_new_from_stock (const gchar *stock_id, |