Add missing override to 4 virtual methods in kicad2step.cpp.

This commit is contained in:
jean-pierre charras 2016-09-26 08:40:12 +02:00
parent 7a1d39ccc6
commit 2717c63c6a
1 changed files with 4 additions and 4 deletions

View File

@ -36,10 +36,10 @@
class KICAD2MCAD : public wxAppConsole class KICAD2MCAD : public wxAppConsole
{ {
public: public:
virtual bool OnInit(); virtual bool OnInit() override;
virtual int OnRun(); virtual int OnRun() override;
virtual void OnInitCmdLine(wxCmdLineParser& parser); virtual void OnInitCmdLine(wxCmdLineParser& parser) override;
virtual bool OnCmdLineParsed(wxCmdLineParser& parser); virtual bool OnCmdLineParsed(wxCmdLineParser& parser) override;
private: private:
#ifdef SUPPORTS_IGES #ifdef SUPPORTS_IGES