aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PropSet.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-04-13 06:16:09 +0000
committernyamatongwe <unknown>2001-04-13 06:16:09 +0000
commit0c1ac39ecf300b9edd9711268f9a61d27aab7efb (patch)
tree449b24178dc3b9a778e4de15439f80e0dbee2de3 /src/PropSet.cxx
parent7f9bebdfdc4a931513b37d27a8da848ebdef8f4f (diff)
downloadscintilla-mirror-0c1ac39ecf300b9edd9711268f9a61d27aab7efb.tar.gz
Fixed const incorrect code.
Diffstat (limited to 'src/PropSet.cxx')
-rw-r--r--src/PropSet.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PropSet.cxx b/src/PropSet.cxx
index 693ead1da..ac88e61c7 100644
--- a/src/PropSet.cxx
+++ b/src/PropSet.cxx
@@ -129,7 +129,7 @@ void PropSet::Set(const char *keyVal) {
}
void PropSet::SetMultiple(const char *s) {
- char *eol = strchr(s, '\n');
+ const char *eol = strchr(s, '\n');
while (eol) {
Set(s);
s = eol + 1;