summaryrefslogtreecommitdiff
path: root/gdk/win32/gdkdevice-wintab.c
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2013-08-21 21:54:09 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2013-08-26 10:29:23 +0800
commit0e01f9cc9c32b0dfc60901c3f0ec3f6c408bb430 (patch)
tree4e4f54cec7c939892357d02be1bc39e4936654dd /gdk/win32/gdkdevice-wintab.c
parenta301617f17354523e6b40f37144c407758994dcd (diff)
downloadgtk+-0e01f9cc9c32b0dfc60901c3f0ec3f6c408bb430.tar.gz
GDK/GTK on Windows: Fix build
Due to the work on gdk_cursor_new_from_surface (commit b2113b73), get_cursor_for_pixbuf() in GdkDisplayClass was converted to get_cursor_for_surface(), which means the GDK Win32 backend needs to be updated for the code to build and run on Windows, plus some function prototypes and declarations/calls need to be updated as well. https://bugzilla.gnome.org/show_bug.cgi?id=705980
Diffstat (limited to 'gdk/win32/gdkdevice-wintab.c')
-rw-r--r--gdk/win32/gdkdevice-wintab.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdk/win32/gdkdevice-wintab.c b/gdk/win32/gdkdevice-wintab.c
index 369821cb08..199e7aa90c 100644
--- a/gdk/win32/gdkdevice-wintab.c
+++ b/gdk/win32/gdkdevice-wintab.c
@@ -40,8 +40,8 @@ static void gdk_device_wintab_set_window_cursor (GdkDevice *device,
GdkCursor *cursor);
static void gdk_device_wintab_warp (GdkDevice *device,
GdkScreen *screen,
- gint x,
- gint y);
+ gdouble x,
+ gdouble y);
static void gdk_device_wintab_query_state (GdkDevice *device,
GdkWindow *window,
GdkWindow **root_window,
@@ -170,8 +170,8 @@ gdk_device_wintab_set_window_cursor (GdkDevice *device,
static void
gdk_device_wintab_warp (GdkDevice *device,
GdkScreen *screen,
- gint x,
- gint y)
+ gdouble x,
+ gdouble y)
{
}