aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Platform.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-01-15 12:07:05 +0000
committernyamatongwe <unknown>2003-01-15 12:07:05 +0000
commitff8cabe4e470ac0ce54fd755d4c31e98dfe9d4e6 (patch)
tree1009cfb899d1c50a24a0931f46cc5cb81ab60f67 /include/Platform.h
parent57634960ce6adbfce37563749bbf22550f984993 (diff)
downloadscintilla-mirror-ff8cabe4e470ac0ce54fd755d4c31e98dfe9d4e6.tar.gz
Added const to methods that are.
Diffstat (limited to 'include/Platform.h')
-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();