summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2010-08-03 03:01:49 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2010-08-03 03:03:06 +0200
commit232372df882430da0cdf4f0b8fc97a09b3cca7a4 (patch)
treede977ef55811de5643682e2e042badce3c9ec268
parentd1dba78ccc6e9a1a82994a1a798ea29670715b16 (diff)
downloadgtk+-232372df882430da0cdf4f0b8fc97a09b3cca7a4.tar.gz
Fix 32-bit Windows build using mingw-w64 toolchain
-rw-r--r--gtk/gtkprintoperation-win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkprintoperation-win32.c b/gtk/gtkprintoperation-win32.c
index 76f8a696ae..c0d149c2a6 100644
--- a/gtk/gtkprintoperation-win32.c
+++ b/gtk/gtkprintoperation-win32.c
@@ -72,7 +72,7 @@ static void win32_poll_status (GtkPrintOperation *op);
static const GUID myIID_IPrintDialogCallback = {0x5852a2c3,0x6530,0x11d1,{0xb6,0xa3,0x0,0x0,0xf8,0x75,0x7b,0xf9}};
-#if !defined (_MSC_VER) && !defined (MINGW64) && !defined (__MINGW64__)
+#if !defined (_MSC_VER) && !defined (__MINGW64_VERSION_MAJOR)
#undef INTERFACE
#define INTERFACE IPrintDialogCallback
DECLARE_INTERFACE_ (IPrintDialogCallback, IUnknown)