summaryrefslogtreecommitdiff
path: root/gdk/gdkselection.c
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2008-08-04 22:43:57 +0000
committerTor Lillqvist <tml@src.gnome.org>2008-08-04 22:43:57 +0000
commitf4d9ce22f48d8b61d88a11aa9b5033f46db9aaaf (patch)
tree8d40a62813675a1828ea6cf31f020cbda605631f /gdk/gdkselection.c
parent7919814bf6eb1c8209be6aebfd5c07569de96eda (diff)
downloadgtk+-f4d9ce22f48d8b61d88a11aa9b5033f46db9aaaf.tar.gz
Bug 544684 - Win64 issue, window handles are assumed to be 32-bit
2008-08-05 Tor Lillqvist <tml@novell.com> Bug 544684 - Win64 issue, window handles are assumed to be 32-bit * gdk/gdkselection.h * gdk/gdkselection.c * gdk/win32/gdkselection-win32.c * gdk/x11/gdkselection-x11.c: Change type of the requestor window id parameter of gdk_selection_send_notify_for_display() and gdk_selection_send_notify() from guint32 to GdkNativeWindow. * gdk/win32/gdkselection-win32.c: Add some guchar and char pointer casts to get rid of gcc 4.4 warnings. Print GdkAtom values in debugging output using the %p format. svn path=/trunk/; revision=20991
Diffstat (limited to 'gdk/gdkselection.c')
-rw-r--r--gdk/gdkselection.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdk/gdkselection.c b/gdk/gdkselection.c
index 0587fc75a6..2a9b84c6a4 100644
--- a/gdk/gdkselection.c
+++ b/gdk/gdkselection.c
@@ -49,11 +49,11 @@ gdk_selection_owner_get (GdkAtom selection)
}
void
-gdk_selection_send_notify (guint32 requestor,
- GdkAtom selection,
- GdkAtom target,
- GdkAtom property,
- guint32 time)
+gdk_selection_send_notify (GdkNativeWindow requestor,
+ GdkAtom selection,
+ GdkAtom target,
+ GdkAtom property,
+ guint32 time)
{
gdk_selection_send_notify_for_display (gdk_display_get_default (),
requestor, selection,