diff options
Diffstat (limited to 'lexers/LexJSON.cxx')
-rw-r--r-- | lexers/LexJSON.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexers/LexJSON.cxx b/lexers/LexJSON.cxx index 516aeb933..16b43abf3 100644 --- a/lexers/LexJSON.cxx +++ b/lexers/LexJSON.cxx @@ -210,7 +210,7 @@ class LexerJSON : public DefaultLexer { } virtual ~LexerJSON() {} int SCI_METHOD Version() const override { - return lvOriginal; + return lvRelease4; } void SCI_METHOD Release() override { delete this; @@ -254,7 +254,7 @@ class LexerJSON : public DefaultLexer { void *SCI_METHOD PrivateCall(int, void *) override { return 0; } - static ILexer *LexerFactoryJSON() { + static ILexer4 *LexerFactoryJSON() { return new LexerJSON; } const char *SCI_METHOD DescribeWordListSets() override { |