diff options
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 }; |