Add missing override keyword

This commit is contained in:
Roland Winklmeier
2018-10-29 11:56:18 +01:00
committed by Klaus Basan
parent 1104d4fb6e
commit a5d1363019

View File

@@ -30,7 +30,7 @@ namespace BlackSimPlugin
CFsuipc(QObject *parent = nullptr);
//! Destructor
virtual ~CFsuipc();
virtual ~CFsuipc() override;
//! Open conenction with FSUIPC
bool connect();
@@ -98,7 +98,7 @@ namespace BlackSimPlugin
protected:
//! \copydoc QObject::timerEvent
void timerEvent(QTimerEvent *event);
void timerEvent(QTimerEvent *event) override;
private:
struct FsuipcWeatherMessage;