From ff8cabe4e470ac0ce54fd755d4c31e98dfe9d4e6 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 15 Jan 2003 12:07:05 +0000 Subject: Added const to methods that are. --- include/Platform.h | 4 ++-- 1 file 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(); -- cgit v1.2.3