diff options
author | nyamatongwe <unknown> | 2010-11-10 22:15:14 +1100 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-11-10 22:15:14 +1100 |
commit | 48c7024f089d44983851e5f11ad3dcbea3b65a1a (patch) | |
tree | 444e938aae68ffe940e372ab9f8bb1fe7a18f39c /win32/PlatWin.cxx | |
parent | c9ccf7798b07cf7ba6fe8ac5bc4fbc2f30398b74 (diff) | |
download | scintilla-mirror-48c7024f089d44983851e5f11ad3dcbea3b65a1a.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.cxx | 2 |
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 |