diff options
author | nyamatongwe <devnull@localhost> | 2010-11-10 22:15:14 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-11-10 22:15:14 +1100 |
commit | f274156575e9eabfe011b7934d4c9a547c8270f7 (patch) | |
tree | 720b1407bd8b1312d672062dff955b83163468ba /win32/PlatWin.cxx | |
parent | 338abd6dbcd93555cdff67161155018de2728058 (diff) | |
download | scintilla-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.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 |