diff options
author | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-18 10:10:30 +0100 |
---|---|---|
committer | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-20 13:57:20 +0100 |
commit | 2fb1c064020c5db189285b1d5e8b8dcea8e9d09b (patch) | |
tree | c7d26238efe9c5cad53cd7431d2f2eac5dfed7ea /gtk/gtkmisc.c | |
parent | 2f0d40335b83d70d04a205dd17e8a5514b79f2d4 (diff) | |
download | gtk+-2fb1c064020c5db189285b1d5e8b8dcea8e9d09b.tar.gz |
[GI] Add missing (out) and (array) annotations
Diffstat (limited to 'gtk/gtkmisc.c')
-rw-r--r-- | gtk/gtkmisc.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gtk/gtkmisc.c b/gtk/gtkmisc.c index bc24ae68a2..c35bd73d21 100644 --- a/gtk/gtkmisc.c +++ b/gtk/gtkmisc.c @@ -239,8 +239,8 @@ gtk_misc_set_alignment (GtkMisc *misc, /** * gtk_misc_get_alignment: * @misc: a #GtkMisc - * @xalign: (allow-none): location to store X alignment of @misc, or %NULL - * @yalign: (allow-none): location to store Y alignment of @misc, or %NULL + * @xalign: (out) (allow-none): location to store X alignment of @misc, or %NULL + * @yalign: (out) (allow-none): location to store Y alignment of @misc, or %NULL * * Gets the X and Y alignment of the widget within its allocation. * See gtk_misc_set_alignment(). @@ -300,8 +300,10 @@ gtk_misc_set_padding (GtkMisc *misc, /** * gtk_misc_get_padding: * @misc: a #GtkMisc - * @xpad: (allow-none): location to store padding in the X direction, or %NULL - * @ypad: (allow-none): location to store padding in the Y direction, or %NULL + * @xpad: (out) (allow-none): location to store padding in the X + * direction, or %NULL + * @ypad: (out) (allow-none): location to store padding in the Y + * direction, or %NULL * * Gets the padding in the X and Y directions of the widget. * See gtk_misc_set_padding(). |