aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ExternalLexer.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2009-07-21 08:29:51 +0000
committernyamatongwe <unknown>2009-07-21 08:29:51 +0000
commitc13647b77a1a52aef060aa7368ed84d5e33dcde5 (patch)
treed2212da98b16a084ef3e4d9eba4382c313f60be9 /src/ExternalLexer.cxx
parent74fc1b126280c1f928dd8a8fb54bc174b92187b4 (diff)
downloadscintilla-mirror-c13647b77a1a52aef060aa7368ed84d5e33dcde5.tar.gz
Replacing SString with std::string.
Diffstat (limited to 'src/ExternalLexer.cxx')
-rw-r--r--src/ExternalLexer.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ExternalLexer.cxx b/src/ExternalLexer.cxx
index a4e29e314..098df4dd5 100644
--- a/src/ExternalLexer.cxx
+++ b/src/ExternalLexer.cxx
@@ -10,6 +10,8 @@
#include <string.h>
#include <ctype.h>
+#include <string>
+
#include "Platform.h"
#include "Scintilla.h"
@@ -39,7 +41,7 @@ char **WordListsToStrings(WordList *val[]) {
dim++;
char **wls = new char * [dim + 1];
for (int i = 0;i < dim;i++) {
- SString words;
+ std::string words;
words = "";
for (int n = 0; n < val[i]->len; n++) {
words += val[i]->words[n];