After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 593788 - There is a misprint in the returning value of gdk_selection_property_get().
There is a misprint in the returning value of gdk_selection_property_get().
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Backend: X11
2.17.x
Other Linux
: Normal normal
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2009-09-01 12:19 UTC by tigran
Modified: 2009-09-03 02:56 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Correct prototype signature (513 bytes, patch)
2009-09-01 12:27 UTC, Christian Dywan
none Details | Review

Description tigran 2009-09-01 12:19:42 UTC
There is a misprint in the documentation of gdk_selection_property_get().

gboolean gdk_selection_property_get (GdkWindow *requestor, guchar **data, GdkAtom *prop_type, gint *prop_format);

But it should be written 

gint gdk_selection_property_get (GdkWindow *requestor, guchar **data, GdkAtom *prop_type, gint *prop_format);


Reported at http://linuxtesting.ru/results/report?num=D0139
Comment 1 Christian Dywan 2009-09-01 12:27:39 UTC
Created attachment 142239 [details] [review]
Correct prototype signature