diff options
author | Robert Ancell <robert.ancell@canonical.com> | 2020-01-13 12:14:08 +1300 |
---|---|---|
committer | Robert Ancell <robert.ancell@canonical.com> | 2020-01-13 12:14:08 +1300 |
commit | 9e9eae3ad4a46480841cba5bebda78b153240140 (patch) | |
tree | c989cf335ef1781667dd7677ff898d865a5ea8a4 /gtk/gtkbuilderscope.c | |
parent | 903afcbddd6b3fa6c8fce99fabe8d52fdfc5d258 (diff) | |
download | gtk+-9e9eae3ad4a46480841cba5bebda78b153240140.tar.gz |
Add missing transfer notation for function return types.
Diffstat (limited to 'gtk/gtkbuilderscope.c')
-rw-r--r-- | gtk/gtkbuilderscope.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkbuilderscope.c b/gtk/gtkbuilderscope.c index 8d08e552a8..18f867a476 100644 --- a/gtk/gtkbuilderscope.c +++ b/gtk/gtkbuilderscope.c @@ -412,7 +412,7 @@ gtk_builder_cscope_init (GtkBuilderCScope *self) * Calling this function is only necessary if you want to add custom * callbacks via gtk_builder_cscope_add_callback_symbol(). * - * Returns: a new #GtkBuilderCScope + * Returns: (transfer full): a new #GtkBuilderCScope **/ GtkBuilderScope * gtk_builder_cscope_new (void) @@ -502,7 +502,7 @@ gtk_builder_cscope_add_callback_symbols (GtkBuilderCScope *self, * Fetches a symbol previously added to @self * with gtk_builder_cscope_add_callback_symbol(). * - * Returns: (nullable): The callback symbol in @builder for @callback_name, or %NULL + * Returns: (nullable) (transfer none): The callback symbol in @builder for @callback_name, or %NULL */ GCallback gtk_builder_cscope_lookup_callback_symbol (GtkBuilderCScope *self, |