diff options
author | Neil <nyamatongwe@gmail.com> | 2019-12-31 15:50:48 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-12-31 15:50:48 +1100 |
commit | f142d93df48c3b9e07edd25425627ddeeb071520 (patch) | |
tree | f7b50820c0c62966e7a384ec8e5a6e689db44c39 /src/ScintillaBase.cxx | |
parent | 431daa97eb571282cdbc9c787098ad17f811e924 (diff) | |
download | scintilla-mirror-f142d93df48c3b9e07edd25425627ddeeb071520.tar.gz |
Move collection of modules from Catalogue.cxx to CatalogueModules.h so it can
be reused.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index c9eb18346..f165f92e2 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -73,6 +73,9 @@ ScintillaBase::ScintillaBase() { listType = 0; maxListWidth = 0; multiAutoCMode = SC_MULTIAUTOC_ONCE; +#ifdef SCI_LEXER + Scintilla_LinkLexers(); +#endif } ScintillaBase::~ScintillaBase() { |