diff options
author | nyamatongwe <devnull@localhost> | 2010-12-10 09:59:54 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-12-10 09:59:54 +1100 |
commit | 827332df11d2ec8436d287473f916274822dd139 (patch) | |
tree | 3ac94b5bcb5e036d52d40978ee0c4fe7208346c8 /lexlib/LexerBase.h | |
parent | bcf4d2ea901e3e44b5b03a38af6a4b79435824e6 (diff) | |
download | scintilla-mirror-827332df11d2ec8436d287473f916274822dd139.tar.gz |
Made LexerBase destructor virtual so LexerSimple cleans up string member. Bug #3133672.
Diffstat (limited to 'lexlib/LexerBase.h')
-rw-r--r-- | lexlib/LexerBase.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlib/LexerBase.h b/lexlib/LexerBase.h index 02fc34dc3..2998d2449 100644 --- a/lexlib/LexerBase.h +++ b/lexlib/LexerBase.h @@ -20,7 +20,7 @@ protected: WordList *keyWordLists[numWordLists+1]; public: LexerBase(); - ~LexerBase(); + virtual ~LexerBase(); void SCI_METHOD Release(); int SCI_METHOD Version() const; const char * SCI_METHOD PropertyNames(); |