diff options
author | Rico Tzschichholz <ricotz@ubuntu.com> | 2016-09-22 13:56:47 +0200 |
---|---|---|
committer | Rico Tzschichholz <ricotz@ubuntu.com> | 2016-09-22 14:02:07 +0200 |
commit | a3f1596069ae966ffa785e85327a868e041560c4 (patch) | |
tree | 54e57c55f3d8e73ceb7d1c6db7fe54c550fc0726 /gtk/gtkstyleprovider.c | |
parent | 54fdcb3ffac3383432b379f3e16e8cb0086b8101 (diff) | |
download | gtk+-a3f1596069ae966ffa785e85327a868e041560c4.tar.gz |
Add some missing (nullable) annotations
https://bugzilla.gnome.org/show_bug.cgi?id=771826
Diffstat (limited to 'gtk/gtkstyleprovider.c')
-rw-r--r-- | gtk/gtkstyleprovider.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkstyleprovider.c b/gtk/gtkstyleprovider.c index fab975a173..d522b58439 100644 --- a/gtk/gtkstyleprovider.c +++ b/gtk/gtkstyleprovider.c @@ -62,7 +62,7 @@ gtk_style_provider_iface_init (gpointer g_iface) * Returns the style settings affecting a widget defined by @path, or %NULL if * @provider doesn’t contemplate styling @path. * - * Returns: (transfer full): a #GtkStyleProperties containing the + * Returns: (nullable) (transfer full): a #GtkStyleProperties containing the * style settings affecting @path * * Since: 3.0 @@ -132,7 +132,7 @@ gtk_style_provider_get_style_property (GtkStyleProvider *provider, * Returns the #GtkIconFactory defined to be in use for @path, or %NULL if none * is defined. * - * Returns: (transfer none): The icon factory to use for @path, or %NULL + * Returns: (nullable) (transfer none): The icon factory to use for @path, or %NULL * * Since: 3.0 * |