diff options
author | Neil <nyamatongwe@gmail.com> | 2013-12-22 17:57:01 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-12-22 17:57:01 +1100 |
commit | b2c1b08f4aff2176dbd77437944ac364cd8fec3c (patch) | |
tree | cfc139a3ef5a1c25095f1ea94c40b00e1ae9fa37 /src/AutoComplete.h | |
parent | 3e2bd6b9780a00a0c1d093afa1c1cdb92b81c2c2 (diff) | |
download | scintilla-mirror-b2c1b08f4aff2176dbd77437944ac364cd8fec3c.tar.gz |
Switch from char[] to std::string for simplicity and safety.
Diffstat (limited to 'src/AutoComplete.h')
-rw-r--r-- | src/AutoComplete.h | 4 |
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 }; |