aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PropSet.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-04-13 06:16:09 +0000
committernyamatongwe <devnull@localhost>2001-04-13 06:16:09 +0000
commit09dd0c8f0af03530c155528d1ba075f01dc64f96 (patch)
tree449b24178dc3b9a778e4de15439f80e0dbee2de3 /src/PropSet.cxx
parentda53fa3bfcfa5e9a6f3819f60ec85099345947b4 (diff)
downloadscintilla-mirror-09dd0c8f0af03530c155528d1ba075f01dc64f96.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;