diff options
| author | nyamatongwe <unknown> | 2003-01-15 12:07:05 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2003-01-15 12:07:05 +0000 | 
| commit | ff8cabe4e470ac0ce54fd755d4c31e98dfe9d4e6 (patch) | |
| tree | 1009cfb899d1c50a24a0931f46cc5cb81ab60f67 | |
| parent | 57634960ce6adbfce37563749bbf22550f984993 (diff) | |
| download | scintilla-mirror-ff8cabe4e470ac0ce54fd755d4c31e98dfe9d4e6.tar.gz | |
Added const to methods that are.
| -rw-r--r-- | include/Platform.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/Platform.h b/include/Platform.h index 4096cb140..b19cdce8d 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -352,8 +352,8 @@ public:  		id = id_;  		return *this;  	} -	WindowID GetID() { return id; } -	bool Created() { return id != 0; } +	WindowID GetID() const { return id; } +	bool Created() const { return id != 0; }  	void Destroy();  	bool HasFocus();  	PRectangle GetPosition(); | 
