diff options
author | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-07-28 13:27:23 +0200 |
---|---|---|
committer | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-08-01 11:09:49 +0200 |
commit | 21a5b038a7104bda778d8d7c2724f460e7929c9d (patch) | |
tree | cf100108163be477fb3608792b8ec760594bc1bf /gdk/x11/gdkselection-x11.c | |
parent | 0893a3fd390d7d1fb40a0d2939852618e40c0289 (diff) | |
download | gtk+-21a5b038a7104bda778d8d7c2724f460e7929c9d.tar.gz |
Add annotations so that methods are properly paired to objects.
Add type annotations to 1st argument of gdk_x11_* functions so that they are
properly recognized as methods of GdkX11 objects.
https://bugzilla.gnome.org/show_bug.cgi?id=655496
Diffstat (limited to 'gdk/x11/gdkselection-x11.c')
-rw-r--r-- | gdk/x11/gdkselection-x11.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdk/x11/gdkselection-x11.c b/gdk/x11/gdkselection-x11.c index 2e9d629422..69761cad17 100644 --- a/gdk/x11/gdkselection-x11.c +++ b/gdk/x11/gdkselection-x11.c @@ -333,7 +333,7 @@ _gdk_x11_display_send_selection_notify (GdkDisplay *display, /** * gdk_x11_display_text_property_to_text_list: - * @display: The #GdkDisplay where the encoding is defined + * @display: (type GdkX11Display): The #GdkDisplay where the encoding is defined * @encoding: an atom representing the encoding. The most * common values for this are STRING, or COMPOUND_TEXT. * This is value used as the type for the property @@ -574,7 +574,7 @@ _gdk_x11_display_text_property_to_utf8_list (GdkDisplay *display, /** * gdk_x11_display_string_to_compound_text: - * @display: the #GdkDisplay where the encoding is defined + * @display: (type GdkX11Display): the #GdkDisplay where the encoding is defined * @str: a nul-terminated string * @encoding: (out) (transfer none): location to store the encoding atom * (to be used as the type for the property) @@ -695,7 +695,7 @@ _gdk_x11_display_utf8_to_string_target (GdkDisplay *display, /** * gdk_x11_display_utf8_to_compound_text: - * @display: a #GdkDisplay + * @display: (type GdkX11Display): a #GdkDisplay * @str: a UTF-8 string * @encoding: (out): location to store resulting encoding * @format: (out): location to store format of the result |