diff options
author | nyamatongwe <unknown> | 2011-02-26 08:17:51 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-02-26 08:17:51 +1100 |
commit | 3745d8fc50d933c303f7bbd5f2fb5ea071f706f5 (patch) | |
tree | 5fc287facf31d8d9fea321f81c2eb709271bd4f9 | |
parent | c66054958d0b6acbf9345149d8bc5a0a7724f3f3 (diff) | |
download | scintilla-mirror-3745d8fc50d933c303f7bbd5f2fb5ea071f706f5.tar.gz |
Fixed preprocessor macro name to fix bug #3192365.
-rw-r--r-- | win32/PlatWin.cxx | 2 |
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 |