diff options
| author | nyamatongwe <unknown> | 2001-12-20 10:39:19 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2001-12-20 10:39:19 +0000 | 
| commit | 2b672082c6806d274d11c27dd6f65ffee23d30a2 (patch) | |
| tree | 998ace69683934c6ce0e21e4465b56a68c169ac2 | |
| parent | f8101999603f89b70052f7e0f6a5695a7438f9d9 (diff) | |
| download | scintilla-mirror-2b672082c6806d274d11c27dd6f65ffee23d30a2.tar.gz | |
Changed append method to +=.
| -rw-r--r-- | win32/ExternalLexer.cxx | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/win32/ExternalLexer.cxx b/win32/ExternalLexer.cxx index f17d41b3e..6ca7ad37d 100644 --- a/win32/ExternalLexer.cxx +++ b/win32/ExternalLexer.cxx @@ -240,8 +240,7 @@ void LexerManager::EnumerateLexers() {  	}  	SString sPattern(sPath); - -	sPattern.append("*.lexer"); +	sPattern += "*.lexer";  	hFind = FindFirstFile(sPattern.c_str(), &FindFileData);  	if (hFind != INVALID_HANDLE_VALUE) { | 
