diff options
| author | nyamatongwe <unknown> | 2005-09-10 00:38:19 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2005-09-10 00:38:19 +0000 | 
| commit | 68276604baeb6a9a3c6cf6b17d02fd68af69c7e8 (patch) | |
| tree | 9ae370c89d69e30f17a83b82ff8a2b5d13bdd7c4 /src | |
| parent | ed7fc665efb63c38d6bde87d416f1e029e75d4ce (diff) | |
| download | scintilla-mirror-68276604baeb6a9a3c6cf6b17d02fd68af69c7e8.tar.gz | |
Reordered to fix warning.
Diffstat (limited to 'src')
| -rw-r--r-- | src/KeyWords.cxx | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/KeyWords.cxx b/src/KeyWords.cxx index f932b877e..afe266516 100644 --- a/src/KeyWords.cxx +++ b/src/KeyWords.cxx @@ -32,8 +32,8 @@ LexerModule::LexerModule(int language_,  	fnLexer(fnLexer_),  	fnFolder(fnFolder_),  	wordListDescriptions(wordListDescriptions_), -	languageName(languageName_), -	styleBits(styleBits_) { +	styleBits(styleBits_), +	languageName(languageName_) {  	next = base;  	base = this;  	if (language == SCLEX_AUTOMATIC) { | 
