diff options
| author | nyamatongwe <unknown> | 2010-03-13 21:22:03 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2010-03-13 21:22:03 +0000 | 
| commit | 1b2967ee84232e3053eb6d7299f11982b91d6d81 (patch) | |
| tree | a506a530b0e449bbf814f6f98c2d19c2e13dcb76 /src/AutoComplete.h | |
| parent | 0f626757c6c63c22943ad7e86650b9ad8787584f (diff) | |
| download | scintilla-mirror-1b2967ee84232e3053eb6d7299f11982b91d6d81.tar.gz | |
Adding const to methods where possible.
Diffstat (limited to 'src/AutoComplete.h')
| -rw-r--r-- | src/AutoComplete.h | 6 | 
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); | 
