diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2012-05-30 17:31:02 -0400 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2012-06-25 14:49:11 -0400 |
commit | 261d2d96e3febb68fbc7b1f774674f6ffe9c703a (patch) | |
tree | 04edf813bde8e9ad9b5b962592aa9e9b0c0360ae /gtk/gtkradiomenuitem.c | |
parent | 66a2870bfd947d5af1aa3da7ea1e1b1549e00729 (diff) | |
download | gtk+-261d2d96e3febb68fbc7b1f774674f6ffe9c703a.tar.gz |
radiobutton: add missing (element-type) annotation for radio groups
The GSLists should specify their element-type in every annotation. We
are missing some.
https://bugzilla.gnome.org/show_bug.cgi?id=677127
Diffstat (limited to 'gtk/gtkradiomenuitem.c')
-rw-r--r-- | gtk/gtkradiomenuitem.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/gtkradiomenuitem.c b/gtk/gtkradiomenuitem.c index 4a3f02601c..0413328eee 100644 --- a/gtk/gtkradiomenuitem.c +++ b/gtk/gtkradiomenuitem.c @@ -93,7 +93,8 @@ G_DEFINE_TYPE (GtkRadioMenuItem, gtk_radio_menu_item, GTK_TYPE_CHECK_MENU_ITEM) /** * gtk_radio_menu_item_new: - * @group: the group to which the radio menu item is to be attached + * @group: (element-type GtkRadioMenuItem): the group to which the + * radio menu item is to be attached * * Creates a new #GtkRadioMenuItem. * @@ -155,7 +156,7 @@ gtk_radio_menu_item_get_property (GObject *object, /** * gtk_radio_menu_item_set_group: * @radio_menu_item: a #GtkRadioMenuItem. - * @group: the new group. + * @group: (element-type GtkRadioMenuItem): the new group. * * Sets the group of a radio menu item, or changes it. */ @@ -265,7 +266,7 @@ gtk_radio_menu_item_new_with_label (GSList *group, /** * gtk_radio_menu_item_new_with_mnemonic: - * @group: group the radio menu item is inside + * @group: (element-type GtkRadioMenuItem): group the radio menu item is inside * @label: the text of the button, with an underscore in front of the * mnemonic character * |