diff options
author | Matthias Clasen <mclasen@redhat.com> | 2011-01-31 19:35:51 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2011-01-31 19:35:51 -0500 |
commit | b52db73f59dc72dd81a01a323893a738303a775d (patch) | |
tree | c3c6adf3ddf650fe6e49b7295ea55d1755766184 /gdk/gdkevents.h | |
parent | fc43e42bf2d755d675ffe9214fdcceb2351ca2aa (diff) | |
download | gtk+-b52db73f59dc72dd81a01a323893a738303a775d.tar.gz |
Deal gracefully with unowned selections
If a selection looses its owner without a replacement, owner is
None, which we did not handle very well.
https://bugzilla.gnome.org/show_bug.cgi?id=641042
Diffstat (limited to 'gdk/gdkevents.h')
-rw-r--r-- | gdk/gdkevents.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdk/gdkevents.h b/gdk/gdkevents.h index 4902601e3c..91a5c8e0a7 100644 --- a/gdk/gdkevents.h +++ b/gdk/gdkevents.h @@ -819,15 +819,15 @@ struct _GdkEventSelection /** * GdkEventOwnerChange: * @type: the type of the event (%GDK_OWNER_CHANGE). - * @window: the window which received the event. + * @window: the window which received the event * @send_event: %TRUE if the event was sent explicitly (e.g. using - * <function>XSendEvent</function>). - * @owner: the new owner of the selection. - * @reason: the reason for the ownership change as a #GdkOwnerChange value. - * @selection: the atom identifying the selection. - * @time: the timestamp of the event. + * <function>XSendEvent</function>) + * @owner: the new owner of the selection, or %NULL if there is none + * @reason: the reason for the ownership change as a #GdkOwnerChange value + * @selection: the atom identifying the selection + * @time: the timestamp of the event * @selection_time: the time at which the selection ownership was taken - * over. + * over * * Generated when the owner of a selection changes. On X11, this * information is only available if the X server supports the XFIXES |