diff options
| -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(); | 
