Add missing OVERRIDE modifier to OpenFileCommand member functions

This commit is contained in:
David Capello 2014-04-17 01:35:31 -03:00
parent c8c8738ef8
commit a2753fd898

View File

@ -51,8 +51,8 @@ public:
Command* clone() const OVERRIDE { return new OpenFileCommand(*this); }
protected:
void onLoadParams(Params* params);
void onExecute(Context* context);
void onLoadParams(Params* params) OVERRIDE;
void onExecute(Context* context) OVERRIDE;
private:
std::string m_filename;