aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/ScintillaGTK.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2019-12-13 10:15:42 +1100
committerNeil <nyamatongwe@gmail.com>2019-12-13 10:15:42 +1100
commit81797180bc69d9dd134e226adb9a27b7d71e9a3b (patch)
tree43ac50b3dad16e3f57f1bdac316559118a57e1a9 /gtk/ScintillaGTK.cxx
parent40b67336c8ac74c0ce729035b7b088c8ba0ca6ad (diff)
downloadscintilla-mirror-81797180bc69d9dd134e226adb9a27b7d71e9a3b.tar.gz
Backport: Move SCI_LOADLEXERLIBRARY from platform layers to ScintillaBase.cxx.
This allows removal of related #include statements. Backport of changeset 7860:4ca969c2fa45.
Diffstat (limited to 'gtk/ScintillaGTK.cxx')
-rwxr-xr-xgtk/ScintillaGTK.cxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx
index 4e5ed1fbf..78e9ea661 100755
--- a/gtk/ScintillaGTK.cxx
+++ b/gtk/ScintillaGTK.cxx
@@ -41,14 +41,8 @@
#include "ILexer.h"
#include "Scintilla.h"
#include "ScintillaWidget.h"
-#ifdef SCI_LEXER
-#include "SciLexer.h"
-#endif
#include "StringCopy.h"
#include "CharacterCategory.h"
-#ifdef SCI_LEXER
-#include "LexerModule.h"
-#endif
#include "Position.h"
#include "UniqueString.h"
#include "SplitVector.h"
@@ -77,10 +71,6 @@
#include "AutoComplete.h"
#include "ScintillaBase.h"
-#ifdef SCI_LEXER
-#include "ExternalLexer.h"
-#endif
-
#include "ScintillaGTK.h"
#include "scintilla-marshal.h"
#include "ScintillaGTKAccessible.h"
@@ -832,11 +822,6 @@ sptr_t ScintillaGTK::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam
case SCI_GETDIRECTPOINTER:
return reinterpret_cast<sptr_t>(this);
-#ifdef SCI_LEXER
- case SCI_LOADLEXERLIBRARY:
- LexerManager::GetInstance()->Load(ConstCharPtrFromSPtr(lParam));
- break;
-#endif
case SCI_TARGETASUTF8:
return TargetAsUTF8(CharPtrFromSPtr(lParam));