diff options
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | configure.in | 4 | ||||
-rw-r--r-- | gdk/gdkconfig.h.win32 | 4 |
3 files changed, 10 insertions, 6 deletions
@@ -1,3 +1,11 @@ +2008-08-05 Tor Lillqvist <tml@novell.com> + + * configure.in: Define GDK_NATIVE_WINDOW_POINTER on 32-bit + Windows, too. It just makes more sense, as a HWND *is* a kind of + pointer. + + * gdk/gdkconfig.h.win32: Ditto here. + 2008-08-04 Björn Lindqvist <bjourne@gmail.com> Bug 534979 – GtkImageMenuItem is a bin but has two children. diff --git a/configure.in b/configure.in index 4dd0a55f05..bd098cd734 100644 --- a/configure.in +++ b/configure.in @@ -1987,9 +1987,7 @@ if test "x$gdktarget" = "xx11" ; then #define GDK_WINDOWING_X11' elif test "x$gdktarget" = "xwin32" ; then gdk_windowing=' -#ifdef _WIN64 -# define GDK_NATIVE_WINDOW_POINTER -#endif +#define GDK_NATIVE_WINDOW_POINTER #define GDK_WINDOWING_WIN32' elif test "x$gdktarget" = "xquartz" ; then diff --git a/gdk/gdkconfig.h.win32 b/gdk/gdkconfig.h.win32 index c362dbb7c3..df250617ff 100644 --- a/gdk/gdkconfig.h.win32 +++ b/gdk/gdkconfig.h.win32 @@ -19,9 +19,7 @@ extern "C" { # endif #endif /* !GSEAL */ -#ifdef _WIN64 -# define GDK_NATIVE_WINDOW_POINTER -#endif +#define GDK_NATIVE_WINDOW_POINTER #define GDK_WINDOWING_WIN32 |