aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-01-15 12:07:05 +0000
committernyamatongwe <devnull@localhost>2003-01-15 12:07:05 +0000
commit2498dadabec8b7bf4c3cb7493c60a6925c423bc4 (patch)
tree1009cfb899d1c50a24a0931f46cc5cb81ab60f67
parent8ce0a0efb23b3a28e05c072394ad73c11811b639 (diff)
downloadscintilla-mirror-2498dadabec8b7bf4c3cb7493c60a6925c423bc4.tar.gz
Added const to methods that are.
-rw-r--r--include/Platform.h4
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();