aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-12-20 00:25:33 +0000
committernyamatongwe <devnull@localhost>2001-12-20 00:25:33 +0000
commit4b9689fbfd0ce420c1fdf11866fe24f1400194cd (patch)
tree2a3cb3f9fe40951fd774f2d394c1ddae4dd8b136
parent0aef439b189f9329b1476b10f3462de1bbf6f527 (diff)
downloadscintilla-mirror-4b9689fbfd0ce420c1fdf11866fe24f1400194cd.tar.gz
Changed use of SString::assign to SString::= as assign is now a private
implementation detail.
-rw-r--r--win32/ExternalLexer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ExternalLexer.cxx b/win32/ExternalLexer.cxx
index 015f9b6af..f17d41b3e 100644
--- a/win32/ExternalLexer.cxx
+++ b/win32/ExternalLexer.cxx
@@ -250,7 +250,7 @@ void LexerManager::EnumerateLexers() {
SString to_open;
while (found) {
- to_open.assign(sPath);
+ to_open = sPath;
to_open += FindFileData.cFileName;
LexerLibrary *lib = new LexerLibrary(to_open.c_str());
if (NULL != first) {