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 /src/Document.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 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index b70024f34..3865c6c3d 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -14,14 +14,6 @@ #include <string> #include <vector> -// With Borland C++ 5.5, including <string> includes Windows.h leading to defining -// FindText to FindTextA which makes calls here to Document::FindText fail. -#ifdef __BORLANDC__ -#ifdef FindText -#undef FindText -#endif -#endif - #include "Platform.h" #include "ILexer.h" |