ZVISION: Remove static Control::parsePushToggleControl

The code was moved to the class PushToggleControl
This commit is contained in:
richiesams 2013-08-20 23:04:16 -05:00
parent fa7fb2e029
commit ca5066db52
2 changed files with 0 additions and 5 deletions

View File

@ -165,8 +165,4 @@ bool PushToggleControl::disable(ZVision *engine) {
return false; return false;
} }
void Control::parsePushToggleControl(uint32 key, ZVision *engine, Common::SeekableReadStream &stream) {
}
} // End of namespace ZVision } // End of namespace ZVision

View File

@ -53,7 +53,6 @@ public:
static void parseFlatControl(ZVision *engine); static void parseFlatControl(ZVision *engine);
static void parsePanoramaControl(ZVision *engine, Common::SeekableReadStream &stream); static void parsePanoramaControl(ZVision *engine, Common::SeekableReadStream &stream);
static void parseTiltControl(ZVision *engine, Common::SeekableReadStream &stream); static void parseTiltControl(ZVision *engine, Common::SeekableReadStream &stream);
static void parsePushToggleControl(uint32 key, ZVision *engine, Common::SeekableReadStream &stream);
}; };
class PushToggleControl : public Control { class PushToggleControl : public Control {