diff options
author | nyamatongwe <unknown> | 2002-02-06 22:17:56 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-02-06 22:17:56 +0000 |
commit | 192e880d26ea3ca2db0c52598b1f4575c4f25f07 (patch) | |
tree | 3bfc0bd94cd85ee0f7adcef3c01a7424d949345b /include/KeyWords.h | |
parent | f74dd27e230aff72c7f73260b962add0d7007d31 (diff) | |
download | scintilla-mirror-192e880d26ea3ca2db0c52598b1f4575c4f25f07.tar.gz |
Made languageName public so clients can use it.
Diffstat (limited to 'include/KeyWords.h')
-rw-r--r-- | include/KeyWords.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/KeyWords.h b/include/KeyWords.h index 869b59d26..3bed075ef 100644 --- a/include/KeyWords.h +++ b/include/KeyWords.h @@ -17,7 +17,6 @@ class LexerModule { protected: LexerModule *next; int language; - const char *languageName; LexerFunction fnLexer; LexerFunction fnFolder; @@ -25,6 +24,7 @@ protected: static int nextLanguage; public: + const char *languageName; LexerModule(int language_, LexerFunction fnLexer_, const char *languageName_=0, LexerFunction fnFolder_=0); int GetLanguage() { return language; } |