aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/AutoComplete.h
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/AutoComplete.h
parent5c0fdd9dd3f026927e46488ab198213e81935b80 (diff)
downloadscintilla-mirror-a158742c0231b348b4663b9900e7da95e05cde48.tar.gz
Adding const to methods where possible.
Diffstat (limited to 'src/AutoComplete.h')
-rw-r--r--src/AutoComplete.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/AutoComplete.h b/src/AutoComplete.h
index b10cdce82..f48cb0551 100644
--- a/src/AutoComplete.h
+++ b/src/AutoComplete.h
@@ -36,7 +36,7 @@ public:
~AutoComplete();
/// Is the auto completion list displayed?
- bool Active();
+ bool Active() const;
/// Display the auto completion list positioned to be near a character position
void Start(Window &parent, int ctrlID, int position, Point location,
@@ -52,11 +52,11 @@ public:
/// The separator character is used when interpreting the list in SetList
void SetSeparator(char separator_);
- char GetSeparator();
+ char GetSeparator() const;
/// The typesep character is used for seperating the word from the type
void SetTypesep(char separator_);
- char GetTypesep();
+ char GetTypesep() const;
/// The list string contains a sequence of words separated by the separator character
void SetList(const char *list);