diff options
author | nyamatongwe <devnull@localhost> | 2003-01-15 12:07:05 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-01-15 12:07:05 +0000 |
commit | 2498dadabec8b7bf4c3cb7493c60a6925c423bc4 (patch) | |
tree | 1009cfb899d1c50a24a0931f46cc5cb81ab60f67 | |
parent | 8ce0a0efb23b3a28e05c072394ad73c11811b639 (diff) | |
download | scintilla-mirror-2498dadabec8b7bf4c3cb7493c60a6925c423bc4.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(); |