summaryrefslogtreecommitdiffstats
path: root/src/ui/key.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/key.h')
-rw-r--r--src/ui/key.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ui/key.h b/src/ui/key.h
index bda1a3d..c3f46fd 100644
--- a/src/ui/key.h
+++ b/src/ui/key.h
@@ -32,9 +32,9 @@ public:
CKey(CInstanceManager* iMan);
virtual ~CKey();
- BOOL Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg);
+ bool Create(FPOINT pos, FPOINT dim, int icon, EventMsg eventMsg);
- BOOL EventProcess(const Event &event);
+ bool EventProcess(const Event &event);
void Draw();
@@ -42,11 +42,11 @@ public:
int RetKey(int option);
protected:
- BOOL TestKey(int key);
+ bool TestKey(int key);
protected:
int m_key[2];
- BOOL m_bCatch;
+ bool m_bCatch;
};