summaryrefslogtreecommitdiff
path: root/gtk/gtkcombobox.c
diff options
context:
space:
mode:
authorSophie Herold <sophie@hemio.de>2020-11-24 19:27:33 +0100
committerSophie Herold <sophie@hemio.de>2020-11-24 19:27:33 +0100
commitfed734edfc789e08be22946491ddd81982a9329c (patch)
treebada742efa6ecce043714a760f79b4bef1e376e1 /gtk/gtkcombobox.c
parentc84c014536d4224f58d334bff0c33e339cdca612 (diff)
downloadgtk+-fed734edfc789e08be22946491ddd81982a9329c.tar.gz
Fix some nullable return annotations 2
Diffstat (limited to 'gtk/gtkcombobox.c')
-rw-r--r--gtk/gtkcombobox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c
index 94671bbc58..30b4693078 100644
--- a/gtk/gtkcombobox.c
+++ b/gtk/gtkcombobox.c
@@ -2142,7 +2142,7 @@ out:
*
* Returns the #GtkTreeModel which is acting as data source for @combo_box.
*
- * Returns: (transfer none): A #GtkTreeModel which was passed
+ * Returns: (nullable) (transfer none): A #GtkTreeModel which was passed
* during construction.
*/
GtkTreeModel *
@@ -2541,7 +2541,7 @@ gtk_combo_box_get_popup_fixed_width (GtkComboBox *combo_box)
*
* Returns the current row separator function.
*
- * Returns: the current row separator function.
+ * Returns: (nullable): the current row separator function.
*/
GtkTreeViewRowSeparatorFunc
gtk_combo_box_get_row_separator_func (GtkComboBox *combo_box)
@@ -2556,7 +2556,7 @@ gtk_combo_box_get_row_separator_func (GtkComboBox *combo_box)
/**
* gtk_combo_box_set_row_separator_func:
* @combo_box: a #GtkComboBox
- * @func: a #GtkTreeViewRowSeparatorFunc
+ * @func: (nullable): a #GtkTreeViewRowSeparatorFunc
* @data: (allow-none): user data to pass to @func, or %NULL
* @destroy: (allow-none): destroy notifier for @data, or %NULL
*