aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-02-26 08:17:51 +1100
committernyamatongwe <devnull@localhost>2011-02-26 08:17:51 +1100
commit8c0f2f58650bff41b3a7a48a09dc61247b8056b4 (patch)
tree7877bc805a18e8eff02c21edd69c4accd8c46f14
parent2bdf3d9c9e04eddbaadef8b6eef7182b79d42adb (diff)
downloadscintilla-mirror-8c0f2f58650bff41b3a7a48a09dc61247b8056b4.tar.gz
Fixed preprocessor macro name to fix bug #3192365.
-rw-r--r--win32/PlatWin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx
index ba67fc1af..c9bb433e4 100644
--- a/win32/PlatWin.cxx
+++ b/win32/PlatWin.cxx
@@ -26,7 +26,7 @@
// We want to use multi monitor functions, but via LoadLibrary etc
// Luckily microsoft has done the heavy lifting for us, so we'll just use their stub functions!
-#if defined(_MSC_VER) && (MSC_VER > 1200)
+#if defined(_MSC_VER) && (_MSC_VER > 1200)
#define COMPILE_MULTIMON_STUBS
#include "MultiMon.h"
#endif