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/gdkselection.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/gdkselection.h')
-rw-r--r-- | gdk/gdkselection.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gdk/gdkselection.h b/gdk/gdkselection.h index 897e0c77cf..53f3b0b9cb 100644 --- a/gdk/gdkselection.h +++ b/gdk/gdkselection.h @@ -192,16 +192,14 @@ gint gdk_selection_property_get (GdkWindow *requestor, GdkAtom *prop_type, gint *prop_format); -#ifndef GDK_MULTIHEAD_SAFE -void gdk_selection_send_notify (GdkNativeWindow requestor, +void gdk_selection_send_notify (GdkWindow *requestor, GdkAtom selection, GdkAtom target, GdkAtom property, guint32 time_); -#endif /* GDK_MULTIHEAD_SAFE */ void gdk_selection_send_notify_for_display (GdkDisplay *display, - GdkNativeWindow requestor, + GdkWindow *requestor, GdkAtom selection, GdkAtom target, GdkAtom property, |