aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/PlatWin.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2010-11-10 22:15:14 +1100
committernyamatongwe <devnull@localhost>2010-11-10 22:15:14 +1100
commitf274156575e9eabfe011b7934d4c9a547c8270f7 (patch)
tree720b1407bd8b1312d672062dff955b83163468ba /win32/PlatWin.cxx
parent338abd6dbcd93555cdff67161155018de2728058 (diff)
downloadscintilla-mirror-f274156575e9eabfe011b7934d4c9a547c8270f7.tar.gz
Remove support for Borland C++.
Use a library for the lexers with MSVC to simplify SciTE makefile.
Diffstat (limited to 'win32/PlatWin.cxx')
-rw-r--r--win32/PlatWin.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx
index 0421e5985..0bae1bef2 100644
--- a/win32/PlatWin.cxx
+++ b/win32/PlatWin.cxx
@@ -27,7 +27,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)) || defined(__BORLANDC__)
+#if defined(_MSC_VER) && (MSC_VER > 1200)
#define COMPILE_MULTIMON_STUBS
#include "MultiMon.h"
#endif