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 | 2787782594e67e452488cea730e052538cb9a3f1 (patch) | |
tree | bfe8d6a69a9e83062ea0b58377a4c25799866730 /src/AutoComplete.h | |
parent | 2bf62e817722b4951830fbaa6c66ba88e40e565d (diff) | |
download | scintilla-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.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 }; |