diff options
author | nyamatongwe <devnull@localhost> | 2000-04-27 14:24:23 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-04-27 14:24:23 +0000 |
commit | c2ef95b678f394d03935542fc1243cb85ca49cc5 (patch) | |
tree | dcadaf995a69dae056e041f030aefaf80cda1e09 | |
parent | 6c5effdab252519b00740b77c3e53f482573501d (diff) | |
download | scintilla-mirror-c2ef95b678f394d03935542fc1243cb85ca49cc5.tar.gz |
Added const indicators to methods that are const.
-rw-r--r-- | include/PropSet.h | 4 |
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 |