diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-02-08 23:14:46 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-02-08 23:21:39 -0500 |
commit | 394ae46ec08857405e4e5b3dad3782c9d9c59651 (patch) | |
tree | f53e6691bfe7694145aaa3af4041078b0179c1aa /gtk/gtkcomboboxtext.c | |
parent | 32398f11fab5e0abc88bf77ec76668d24af3e659 (diff) | |
download | gtk+-394ae46ec08857405e4e5b3dad3782c9d9c59651.tar.gz |
Add some missing symbols to the docs
Diffstat (limited to 'gtk/gtkcomboboxtext.c')
-rw-r--r-- | gtk/gtkcomboboxtext.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gtk/gtkcomboboxtext.c b/gtk/gtkcomboboxtext.c index be0a076a1d..ba6c051179 100644 --- a/gtk/gtkcomboboxtext.c +++ b/gtk/gtkcomboboxtext.c @@ -408,10 +408,11 @@ gtk_combo_box_text_insert_text (GtkComboBoxText *combo_box, /** * gtk_combo_box_text_append: * @combo_box: A #GtkComboBoxText + * @id: (allow-none): a string ID for this value, or %NULL * @text: A string * - * Appends @text to the list of strings stored in @combo_box. If @id is - * non-%NULL then it is used as the ID of the row. + * Appends @text to the list of strings stored in @combo_box. + * If @id is non-%NULL then it is used as the ID of the row. * * This is the same as calling gtk_combo_box_text_insert() with a * position of -1. @@ -432,8 +433,8 @@ gtk_combo_box_text_append (GtkComboBoxText *combo_box, * @id: (allow-none): a string ID for this value, or %NULL * @text: a string * - * Prepends @text to the list of strings stored in @combo_box. If @id - * is non-%NULL then it is used as the ID of the row. + * Prepends @text to the list of strings stored in @combo_box. + * If @id is non-%NULL then it is used as the ID of the row. * * This is the same as calling gtk_combo_box_text_insert() with a * position of 0. |