diff options
| author | mitchell <unknown> | 2019-01-12 08:46:19 -0500 |
|---|---|---|
| committer | mitchell <unknown> | 2019-01-12 08:46:19 -0500 |
| commit | 325a1d12e77a1d31bcf8c337f17c7fbcb04ab777 (patch) | |
| tree | 6cf0c4659a4e374f7545543962f35432709ec53b | |
| parent | b7dfdd2b2fd499c63f96937900866a5d123dcf45 (diff) | |
| download | scintilla-mirror-325a1d12e77a1d31bcf8c337f17c7fbcb04ab777.tar.gz | |
Fixed LexNim backport error.
| -rw-r--r-- | lexers/LexNim.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexers/LexNim.cxx b/lexers/LexNim.cxx index 94d179e04..ed2da1b7e 100644 --- a/lexers/LexNim.cxx +++ b/lexers/LexNim.cxx @@ -98,7 +98,7 @@ public: } int SCI_METHOD Version() const override { - return lvRelease4; + return lvMetaData; } const char * SCI_METHOD PropertyNames() override { @@ -136,7 +136,7 @@ public: return style; } - static ILexer4 *LexerFactoryNim() { + static ILexer *LexerFactoryNim() { return new LexerNim(); } }; |
