diff options
author | Benjamin Otte <otte@redhat.com> | 2011-02-01 17:22:04 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-02-01 18:51:57 +0100 |
commit | 5bc04bc07be16732e0ec2ddecbb0fcfc46a929c7 (patch) | |
tree | 4389ed64b931f6be59a4040350607ce2998094a3 /gdk/gdkevents.h | |
parent | c2a5d715d5cded5eeb0f284208d49c9e8773ed1b (diff) | |
download | gtk+-5bc04bc07be16732e0ec2ddecbb0fcfc46a929c7.tar.gz |
API: gdk: Make GdkEventSelection.requestor a GdkWindow
instead of a GdkNativeWindow. Also change gdk_selection_notify() API to
take a GdkWindow to match this change.
Diffstat (limited to 'gdk/gdkevents.h')
-rw-r--r-- | gdk/gdkevents.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/gdkevents.h b/gdk/gdkevents.h index 97e3f3f707..f1684ba66e 100644 --- a/gdk/gdkevents.h +++ b/gdk/gdkevents.h @@ -798,7 +798,7 @@ struct _GdkEventProperty * @target: the target to which the selection should be converted. * @property: the property in which to place the result of the conversion. * @time: the time of the event in milliseconds. - * @requestor: the native window on which to place @property. + * @requestor: the window on which to place @property or %NULL if none. * * Generated when a selection is requested or ownership of a selection * is taken over by another client application. @@ -812,7 +812,7 @@ struct _GdkEventSelection GdkAtom target; GdkAtom property; guint32 time; - GdkNativeWindow requestor; + GdkWindow *requestor; }; /** |