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 /lexers/LexCPP.cxx | |
parent | e7375474b0697983b727a1efd32eb8b6bbbbd00d (diff) | |
download | scintilla-mirror-cac2f69f221ca31545681968fc746dc590f060bd.tar.gz |
Add style metadata methods with null implementations.
Diffstat (limited to 'lexers/LexCPP.cxx')
-rw-r--r-- | lexers/LexCPP.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lexers/LexCPP.cxx b/lexers/LexCPP.cxx index 5d75aa171..39e21fff3 100644 --- a/lexers/LexCPP.cxx +++ b/lexers/LexCPP.cxx @@ -545,6 +545,18 @@ public: const char * SCI_METHOD GetSubStyleBases() override { return styleSubable; } + int SCI_METHOD NamedStyles() { + return 0; + } + const char * SCI_METHOD NameOfStyle(int) { + return ""; + } + const char * SCI_METHOD TagsOfStyle(int) { + return ""; + } + const char * SCI_METHOD DescriptionOfStyle(int) { + return ""; + } static ILexer4 *LexerFactoryCPP() { return new LexerCPP(true); |