diff options
author | Neil <nyamatongwe@gmail.com> | 2019-12-13 10:15:42 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-12-13 10:15:42 +1100 |
commit | 54c7ef44396c43b964060cb15e2ebdbf7359cb02 (patch) | |
tree | 19e0aaa84f43dff55da2a4adefbbccdcc543a201 /gtk/ScintillaGTK.cxx | |
parent | 9f57c6efaee18d374da2abdb2e556830f2beb592 (diff) | |
download | scintilla-mirror-54c7ef44396c43b964060cb15e2ebdbf7359cb02.tar.gz |
Move SCI_LOADLEXERLIBRARY from platform layers to ScintillaBase.cxx.
This allows removal of related #include statements.
Diffstat (limited to 'gtk/ScintillaGTK.cxx')
-rwxr-xr-x | gtk/ScintillaGTK.cxx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 5e4abd13c..9e51f5c98 100755 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -42,14 +42,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" @@ -78,10 +72,6 @@ #include "AutoComplete.h" #include "ScintillaBase.h" -#ifdef SCI_LEXER -#include "ExternalLexer.h" -#endif - #include "ScintillaGTK.h" #include "scintilla-marshal.h" #include "ScintillaGTKAccessible.h" @@ -833,11 +823,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)); |