diff options
| author | Neil <nyamatongwe@gmail.com> | 2019-12-13 10:59:37 +1100 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2019-12-13 10:59:37 +1100 | 
| commit | 8f1cccd456144fcab0a004afe08aeabfcf2c7357 (patch) | |
| tree | d22222f36385c43630d573e40d5228f80dbdf558 /src/ScintillaBase.cxx | |
| parent | 54c7ef44396c43b964060cb15e2ebdbf7359cb02 (diff) | |
| download | scintilla-mirror-8f1cccd456144fcab0a004afe08aeabfcf2c7357.tar.gz | |
Hide details of ExternalLexer and export ExternalLexerLoad function only.
Diffstat (limited to 'src/ScintillaBase.cxx')
| -rw-r--r-- | src/ScintillaBase.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index aec08be55..c9eb18346 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -1093,7 +1093,7 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara  		return StringResult(lParam, DocumentLexState()->GetName());  	case SCI_LOADLEXERLIBRARY: -		LexerManager::GetInstance()->Load(ConstCharPtrFromSPtr(lParam)); +		ExternalLexerLoad(ConstCharPtrFromSPtr(lParam));  		break;  	case SCI_PRIVATELEXERCALL: | 
