From 38620a5d4d67566651271b516f01041bcf38b071 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Tue, 21 Jul 2009 08:29:51 +0000 Subject: Replacing SString with std::string. --- src/ExternalLexer.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/ExternalLexer.cxx') 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 #include +#include + #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]; -- cgit v1.2.3