aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CallTip.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2010-03-13 21:22:03 +0000
committernyamatongwe <devnull@localhost>2010-03-13 21:22:03 +0000
commita158742c0231b348b4663b9900e7da95e05cde48 (patch)
treea506a530b0e449bbf814f6f98c2d19c2e13dcb76 /src/CallTip.cxx
parent5c0fdd9dd3f026927e46488ab198213e81935b80 (diff)
downloadscintilla-mirror-a158742c0231b348b4663b9900e7da95e05cde48.tar.gz
Adding const to methods where possible.
Diffstat (limited to 'src/CallTip.cxx')
-rw-r--r--src/CallTip.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CallTip.cxx b/src/CallTip.cxx
index 126428213..18a524752 100644
--- a/src/CallTip.cxx
+++ b/src/CallTip.cxx
@@ -68,7 +68,7 @@ static bool IsArrowCharacter(char ch) {
}
// We ignore tabs unless a tab width has been set.
-bool CallTip::IsTabCharacter(char ch) {
+bool CallTip::IsTabCharacter(char ch) const {
return (tabSize > 0) && (ch == '\t');
}