diff options
author | Neil <nyamatongwe@gmail.com> | 2018-05-03 07:44:56 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-05-03 07:44:56 +1000 |
commit | 5e57df2146614bf2c344fcb4a5c54f08ec5f1add (patch) | |
tree | 034f560e9be8814f86d60924827dd3b607affb31 /src | |
parent | a89c20b95b80e21061ed34289e043616221320fb (diff) | |
download | scintilla-mirror-5e57df2146614bf2c344fcb4a5c54f08ec5f1add.tar.gz |
Backport: Simplify PropSetSimple, avoid casts, use nullptr.
Backport of changeset 6788:e9f6386c89d4.
Diffstat (limited to 'src')
-rw-r--r-- | src/ScintillaBase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index cf1b0d588..10a70bd72 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -703,7 +703,7 @@ const char *LexState::DescribeProperty(const char *name) { } void LexState::PropSet(const char *key, const char *val) { - props.Set(key, val); + props.Set(key, val, strlen(key), strlen(val)); if (instance) { const Sci_Position firstModification = instance->PropertySet(key, val); if (firstModification >= 0) { |