diff options
author | John Stowers <john.stowers@gmail.com> | 2011-05-09 22:43:30 +1200 |
---|---|---|
committer | John Stowers <john.stowers@gmail.com> | 2011-05-09 23:09:26 +1200 |
commit | 21761ce5fc031bce0c85946e417dd92a3cf715b2 (patch) | |
tree | 079bc72d29a7b2dcbf03c8feb259853e2c9d8e25 /gtk/gtkwidget.c | |
parent | dcbf362621605fbecfede17115d547d9e69528fa (diff) | |
download | gtk+-21761ce5fc031bce0c85946e417dd92a3cf715b2.tar.gz |
Add missing gtk_widget_override_* annotations
https://bugzilla.gnome.org/show_bug.cgi?id=649779
Diffstat (limited to 'gtk/gtkwidget.c')
-rw-r--r-- | gtk/gtkwidget.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c index db2b824e6e..cece4de454 100644 --- a/gtk/gtkwidget.c +++ b/gtk/gtkwidget.c @@ -8076,7 +8076,7 @@ _gtk_widget_get_modifier_properties (GtkWidget *widget) * gtk_widget_override_color: * @widget: a #GtkWidget * @state: the state for which to set the color - * @color: the color to assign, or %NULL to undo the effect + * @color: (allow-none): the color to assign, or %NULL to undo the effect * of previous calls to gtk_widget_override_color() * * Sets the color to use for a widget. @@ -8123,7 +8123,7 @@ gtk_widget_override_color (GtkWidget *widget, * gtk_widget_override_background_color: * @widget: a #GtkWidget * @state: the state for which to set the background color - * @color: the color to assign, or %NULL to undo the effect + * @color: (allow-none): the color to assign, or %NULL to undo the effect * of previous calls to gtk_widget_override_background_color() * * Sets the background color to use for a widget. @@ -8149,7 +8149,7 @@ gtk_widget_override_background_color (GtkWidget *widget, /** * gtk_widget_override_font: * @widget: a #GtkWidget - * @font_desc: the font descriptiong to use, or %NULL to undo + * @font_desc: (allow-none): the font descriptiong to use, or %NULL to undo * the effect of previous calls to gtk_widget_override_font() * * Sets the font to use for a widget. All other style values are @@ -8201,10 +8201,10 @@ gtk_widget_override_symbolic_color (GtkWidget *widget, /** * gtk_widget_override_cursor: * @widget: a #GtkWidget - * @cursor: the color to use for primary cursor (does not need to be + * @cursor: (allow-none): the color to use for primary cursor (does not need to be * allocated), or %NULL to undo the effect of previous calls to * of gtk_widget_override_cursor(). - * @secondary_cursor: the color to use for secondary cursor (does not + * @secondary_cursor: (allow-none): the color to use for secondary cursor (does not * need to be allocated), or %NULL to undo the effect of previous * calls to of gtk_widget_override_cursor(). * |