fix -Winconsistent-missing-override

This commit is contained in:
wmayer
2019-10-22 14:12:10 +02:00
parent 8e17c8c4ba
commit 8421443129
2 changed files with 5 additions and 5 deletions

View File

@@ -340,7 +340,7 @@ public:
virtual ~StatusBarObserver();
/** Observes its parameter group. */
void OnChange(Base::Subject<const char*> &rCaller, const char * sReason);
void OnChange(Base::Subject<const char*> &rCaller, const char * sReason) override;
void SendLog(const std::string& msg, Base::LogStyle level) override;

View File

@@ -133,7 +133,7 @@ public:
virtual ~ReportOutput();
/** Observes its parameter group. */
void OnChange(Base::Subject<const char*> &rCaller, const char * sReason);
void OnChange(Base::Subject<const char*> &rCaller, const char * sReason) override;
void SendLog(const std::string& msg, Base::LogStyle level) override;
@@ -152,11 +152,11 @@ public:
protected:
/** For internal use only */
void customEvent ( QEvent* ev );
void customEvent ( QEvent* ev ) override;
/** Handles the change of style sheets */
void changeEvent(QEvent *);
void changeEvent(QEvent *) override;
/** Pops up the context menu with some extensions */
void contextMenuEvent ( QContextMenuEvent* e );
void contextMenuEvent ( QContextMenuEvent* e ) override;
public Q_SLOTS:
/** Save the report messages into a file. */