diff options
| author | Neil <nyamatongwe@gmail.com> | 2019-12-31 20:19:24 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2019-12-31 20:19:24 +1100 |
| commit | 8c9b09dd5f861e52590a154b2ad8ee0f0dc4e89f (patch) | |
| tree | dfaf6cc1b26e02b857c4ef971231f5957ed02f8c /src/ScintillaBase.h | |
| parent | 45d4e27aed4e2301a2dd00d8ee59174ff2a2f0db (diff) | |
| download | scintilla-mirror-8c9b09dd5f861e52590a154b2ad8ee0f0dc4e89f.tar.gz | |
Backport: Implement SCI_SETILEXER.
Backport of changeset 7871:ff54e1fc74f3, but with the ability to distinguish
between ILexer and ILexer5 interfaces.
Diffstat (limited to 'src/ScintillaBase.h')
| -rw-r--r-- | src/ScintillaBase.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/ScintillaBase.h b/src/ScintillaBase.h index e922ab057..fcb1c9796 100644 --- a/src/ScintillaBase.h +++ b/src/ScintillaBase.h @@ -10,10 +10,7 @@ namespace Scintilla { -#ifdef SCI_LEXER class LexState; -#endif - /** */ class ScintillaBase : public Editor, IListBoxDelegate { @@ -44,12 +41,10 @@ protected: int maxListWidth; /// Maximum width of list, in average character widths int multiAutoCMode; /// Mode for autocompleting when multiple selections are present -#ifdef SCI_LEXER LexState *DocumentLexState(); void SetLexer(uptr_t wParam); void SetLexerLanguage(const char *languageName); void Colourise(int start, int end); -#endif ScintillaBase(); // Deleted so ScintillaBase objects can not be copied. |
