aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-04-27 14:24:23 +0000
committernyamatongwe <devnull@localhost>2000-04-27 14:24:23 +0000
commitc2ef95b678f394d03935542fc1243cb85ca49cc5 (patch)
treedcadaf995a69dae056e041f030aefaf80cda1e09
parent6c5effdab252519b00740b77c3e53f482573501d (diff)
downloadscintilla-mirror-c2ef95b678f394d03935542fc1243cb85ca49cc5.tar.gz
Added const indicators to methods that are const.
-rw-r--r--include/PropSet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/PropSet.h b/include/PropSet.h
index 27fd821a4..bc1599f38 100644
--- a/include/PropSet.h
+++ b/include/PropSet.h
@@ -75,7 +75,7 @@ public:
else
return 0;
}
- char operator[](int i) {
+ char operator[](int i) const {
if (s)
return s[i];
else
@@ -95,7 +95,7 @@ public:
}
return *this;
}
- int value() {
+ int value() const {
if (s)
return atoi(s);
else