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/gtklabel.c | |
parent | 2f0d40335b83d70d04a205dd17e8a5514b79f2d4 (diff) | |
download | gtk+-2fb1c064020c5db189285b1d5e8b8dcea8e9d09b.tar.gz |
[GI] Add missing (out) and (array) annotations
Diffstat (limited to 'gtk/gtklabel.c')
-rw-r--r-- | gtk/gtklabel.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtklabel.c b/gtk/gtklabel.c index 5f4ba06642..272e6de2d9 100644 --- a/gtk/gtklabel.c +++ b/gtk/gtklabel.c @@ -5469,8 +5469,8 @@ gtk_label_select_region (GtkLabel *label, /** * gtk_label_get_selection_bounds: * @label: a #GtkLabel - * @start: return location for start of selection, as a character offset - * @end: return location for end of selection, as a character offset + * @start: (out): return location for start of selection, as a character offset + * @end: (out): return location for end of selection, as a character offset * * Gets the selected range of characters in the label, returning %TRUE * if there's a selection. @@ -5568,8 +5568,8 @@ gtk_label_get_layout (GtkLabel *label) /** * gtk_label_get_layout_offsets: * @label: a #GtkLabel - * @x: (allow-none): location to store X offset of layout, or %NULL - * @y: (allow-none): location to store Y offset of layout, or %NULL + * @x: (out) (allow-none): location to store X offset of layout, or %NULL + * @y: (out) (allow-none): location to store Y offset of layout, or %NULL * * Obtains the coordinates where the label will draw the #PangoLayout * representing the text in the label; useful to convert mouse events |