aboutsummaryrefslogtreecommitdiff
path: root/engines/zvision/control.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/zvision/control.h')
-rw-r--r--engines/zvision/control.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/zvision/control.h b/engines/zvision/control.h
index ab55763a20..66fdbfee19 100644
--- a/engines/zvision/control.h
+++ b/engines/zvision/control.h
@@ -38,16 +38,14 @@ class ZVision;
class Control {
public:
- Control() : _engine(0), _key(0), _enabled(false) {}
- Control(ZVision *engine, uint32 key) : _engine(engine), _key(key), _enabled(false) {}
+ Control() : _engine(0), _key(0) {}
+ Control(ZVision *engine, uint32 key) : _engine(engine), _key(key) {}
virtual ~Control() {}
uint32 getKey() {
return _key;
}
- virtual void enable();
- virtual void disable();
virtual void focus() {}
virtual void unfocus() {}
/**
@@ -131,7 +129,6 @@ public:
protected:
ZVision *_engine;
uint32 _key;
- bool _enabled;
// Static member functions
public: