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 /gdk/gdkdisplay.c | |
parent | 2f0d40335b83d70d04a205dd17e8a5514b79f2d4 (diff) | |
download | gtk+-2fb1c064020c5db189285b1d5e8b8dcea8e9d09b.tar.gz |
[GI] Add missing (out) and (array) annotations
Diffstat (limited to 'gdk/gdkdisplay.c')
-rw-r--r-- | gdk/gdkdisplay.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdk/gdkdisplay.c b/gdk/gdkdisplay.c index 0cbf3879be..32f2b94429 100644 --- a/gdk/gdkdisplay.c +++ b/gdk/gdkdisplay.c @@ -597,7 +597,7 @@ _gdk_display_enable_motion_hints (GdkDisplay *display, /** * gdk_display_get_pointer: * @display: a #GdkDisplay - * @screen: (allow-none): location to store the screen that the + * @screen: (out) (allow-none): location to store the screen that the * cursor is on, or %NULL. * @x: (out) (allow-none): location to store root window X coordinate of pointer, or %NULL. * @y: (out) (allow-none): location to store root window Y coordinate of pointer, or %NULL. @@ -1571,7 +1571,8 @@ gdk_display_supports_clipboard_persistence (GdkDisplay *display) * @display: a #GdkDisplay * @clipboard_window: a #GdkWindow belonging to the clipboard owner * @time_: a timestamp - * @targets: an array of targets that should be saved, or %NULL + * @targets: (array length=n_targets): an array of targets + * that should be saved, or %NULL * if all available targets should be saved. * @n_targets: length of the @targets array * @@ -1771,7 +1772,7 @@ gdk_display_get_app_launch_context (GdkDisplay *display) * gdk_drag_get_protocol_for_display: * @display: the #GdkDisplay where the destination window resides * @xid: the windowing system id of the destination window. - * @protocol: location where the supported DND protocol is returned. + * @protocol: (out): location where the supported DND protocol is returned. * * Finds out the DND protocol supported by a window. * |