diff options
author | Neil <nyamatongwe@gmail.com> | 2017-06-22 17:43:56 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-06-22 17:43:56 +1000 |
commit | cac2f69f221ca31545681968fc746dc590f060bd (patch) | |
tree | 3abb1f938fe6415544e1eac1c27d9b10277c3082 /lexlib/LexerBase.cxx | |
parent | e7375474b0697983b727a1efd32eb8b6bbbbd00d (diff) | |
download | scintilla-mirror-cac2f69f221ca31545681968fc746dc590f060bd.tar.gz |
Add style metadata methods with null implementations.
Diffstat (limited to 'lexlib/LexerBase.cxx')
-rw-r--r-- | lexlib/LexerBase.cxx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lexlib/LexerBase.cxx b/lexlib/LexerBase.cxx index 232b110c4..fdf8878a2 100644 --- a/lexlib/LexerBase.cxx +++ b/lexlib/LexerBase.cxx @@ -127,3 +127,19 @@ int SCI_METHOD LexerBase::DistanceToSecondaryStyles() { const char * SCI_METHOD LexerBase::GetSubStyleBases() { return styleSubable; } + +int SCI_METHOD LexerBase::NamedStyles() { + return 0; +} + +const char * SCI_METHOD LexerBase::NameOfStyle(int) { + return ""; +} + +const char * SCI_METHOD LexerBase::TagsOfStyle(int) { + return ""; +} + +const char * SCI_METHOD LexerBase::DescriptionOfStyle(int) { + return ""; +} |