diff options
| author | Neil <nyamatongwe@gmail.com> | 2014-05-24 09:29:24 +1000 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2014-05-24 09:29:24 +1000 | 
| commit | aff335283c4ea47a38375ef6950ee2c285ddee70 (patch) | |
| tree | 75a325ff0bef9f0bf7c121774fd8067fb869ac6b /lexlib/LexerModule.cxx | |
| parent | 524a5429eaae34e45769c39e44f1c7c10b1c5eff (diff) | |
| download | scintilla-mirror-aff335283c4ea47a38375ef6950ee2c285ddee70.tar.gz | |
Removing style byte indicators.
Diffstat (limited to 'lexlib/LexerModule.cxx')
| -rw-r--r-- | lexlib/LexerModule.cxx | 12 | 
1 files changed, 2 insertions, 10 deletions
| diff --git a/lexlib/LexerModule.cxx b/lexlib/LexerModule.cxx index c77b31775..5b25f84ec 100644 --- a/lexlib/LexerModule.cxx +++ b/lexlib/LexerModule.cxx @@ -34,28 +34,24 @@ LexerModule::LexerModule(int language_,  	LexerFunction fnLexer_,  	const char *languageName_,  	LexerFunction fnFolder_, -        const char *const wordListDescriptions_[], -	int styleBits_) : +        const char *const wordListDescriptions_[]) :  	language(language_),  	fnLexer(fnLexer_),  	fnFolder(fnFolder_),  	fnFactory(0),  	wordListDescriptions(wordListDescriptions_), -	styleBits(styleBits_),  	languageName(languageName_) {  }  LexerModule::LexerModule(int language_,  	LexerFactoryFunction fnFactory_,  	const char *languageName_, -	const char * const wordListDescriptions_[], -	int styleBits_) : +	const char * const wordListDescriptions_[]) :  	language(language_),  	fnLexer(0),  	fnFolder(0),  	fnFactory(fnFactory_),  	wordListDescriptions(wordListDescriptions_), -	styleBits(styleBits_),  	languageName(languageName_) {  } @@ -82,10 +78,6 @@ const char *LexerModule::GetWordListDescription(int index) const {  	}  } -int LexerModule::GetStyleBitsNeeded() const { -	return styleBits; -} -  ILexer *LexerModule::Create() const {  	if (fnFactory)  		return fnFactory(); | 
