aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-05-03 07:44:56 +1000
committerNeil <nyamatongwe@gmail.com>2018-05-03 07:44:56 +1000
commit5e57df2146614bf2c344fcb4a5c54f08ec5f1add (patch)
tree034f560e9be8814f86d60924827dd3b607affb31 /src
parenta89c20b95b80e21061ed34289e043616221320fb (diff)
downloadscintilla-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.cxx2
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) {