aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/AutoComplete.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-12-22 17:57:01 +1100
committerNeil <nyamatongwe@gmail.com>2013-12-22 17:57:01 +1100
commit2787782594e67e452488cea730e052538cb9a3f1 (patch)
treebfe8d6a69a9e83062ea0b58377a4c25799866730 /src/AutoComplete.h
parent2bf62e817722b4951830fbaa6c66ba88e40e565d (diff)
downloadscintilla-mirror-2787782594e67e452488cea730e052538cb9a3f1.tar.gz
Switch from char[] to std::string for simplicity and safety.
Diffstat (limited to 'src/AutoComplete.h')
-rw-r--r--src/AutoComplete.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/AutoComplete.h b/src/AutoComplete.h
index f7a0c3f1e..6838e4306 100644
--- a/src/AutoComplete.h
+++ b/src/AutoComplete.h
@@ -16,8 +16,8 @@ namespace Scintilla {
*/
class AutoComplete {
bool active;
- char stopChars[256];
- char fillUpChars[256];
+ std::string stopChars;
+ std::string fillUpChars;
char separator;
char typesep; // Type seperator
enum { maxItemLen=1000 };