diff options
author | nyamatongwe <devnull@localhost> | 2002-02-06 22:17:56 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-02-06 22:17:56 +0000 |
commit | 9ee922e77a7d27c5c7bda80735064241c277ad43 (patch) | |
tree | 3bfc0bd94cd85ee0f7adcef3c01a7424d949345b /include/KeyWords.h | |
parent | 77fe328c9a8d1ddda2b4bee69d1110ba85d7b9b4 (diff) | |
download | scintilla-mirror-9ee922e77a7d27c5c7bda80735064241c277ad43.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; } |