mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-20 12:35:43 +08:00
Fixed missing override keywords
Summary: Fixed GCC 6.3 missing override warnings. Reviewers: #swift_pilot_client, rwinklmeier Reviewed By: #swift_pilot_client, rwinklmeier Subscribers: jenkins Tags: #swift_pilot_client Differential Revision: https://dev.swift-project.org/D27
This commit is contained in:
@@ -36,7 +36,7 @@ namespace BlackSample
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
//! Run reader in background
|
//! Run reader in background
|
||||||
void run();
|
virtual void run() override;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
//! User command
|
//! User command
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ public:
|
|||||||
|
|
||||||
protected:
|
protected:
|
||||||
//! \copydoc QThread::run
|
//! \copydoc QThread::run
|
||||||
void run();
|
virtual void run() override;
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
//! User is asking for weather data
|
//! User is asking for weather data
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ namespace BlackCore
|
|||||||
}
|
}
|
||||||
|
|
||||||
//! \copydoc CContext::getPathAndContextId()
|
//! \copydoc CContext::getPathAndContextId()
|
||||||
virtual QString getPathAndContextId() const { return this->buildPathAndContextId(ObjectPath()); }
|
virtual QString getPathAndContextId() const override { return this->buildPathAndContextId(ObjectPath()); }
|
||||||
|
|
||||||
//! Factory method
|
//! Factory method
|
||||||
static IContextApplication *create(CCoreFacade *parent, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &conn);
|
static IContextApplication *create(CCoreFacade *parent, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &conn);
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ namespace BlackCore
|
|||||||
static const QPixmap &pttHotkeyIcon();
|
static const QPixmap &pttHotkeyIcon();
|
||||||
|
|
||||||
//! \copydoc CContext::getPathAndContextId()
|
//! \copydoc CContext::getPathAndContextId()
|
||||||
virtual QString getPathAndContextId() const { return this->buildPathAndContextId(ObjectPath()); }
|
virtual QString getPathAndContextId() const override { return this->buildPathAndContextId(ObjectPath()); }
|
||||||
|
|
||||||
//! Factory method
|
//! Factory method
|
||||||
static IContextAudio *create(CCoreFacade *runtime, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &conn);
|
static IContextAudio *create(CCoreFacade *runtime, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &conn);
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ namespace BlackCore
|
|||||||
}
|
}
|
||||||
|
|
||||||
//! \copydoc CContext::getPathAndContextId()
|
//! \copydoc CContext::getPathAndContextId()
|
||||||
virtual QString getPathAndContextId() const { return this->buildPathAndContextId(ObjectPath()); }
|
virtual QString getPathAndContextId() const override { return this->buildPathAndContextId(ObjectPath()); }
|
||||||
|
|
||||||
//! Factory method
|
//! Factory method
|
||||||
static IContextNetwork *create(CCoreFacade *parent, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &connection);
|
static IContextNetwork *create(CCoreFacade *parent, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &connection);
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ namespace BlackCore
|
|||||||
}
|
}
|
||||||
|
|
||||||
//! \copydoc CContext::getPathAndContextId()
|
//! \copydoc CContext::getPathAndContextId()
|
||||||
virtual QString getPathAndContextId() const { return this->buildPathAndContextId(ObjectPath()); }
|
virtual QString getPathAndContextId() const override { return this->buildPathAndContextId(ObjectPath()); }
|
||||||
|
|
||||||
//! Factory method
|
//! Factory method
|
||||||
static IContextOwnAircraft *create(CCoreFacade *parent, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &conn);
|
static IContextOwnAircraft *create(CCoreFacade *parent, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &conn);
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ namespace BlackCore
|
|||||||
static const BlackMisc::PhysicalQuantities::CTime &HighlightTime();
|
static const BlackMisc::PhysicalQuantities::CTime &HighlightTime();
|
||||||
|
|
||||||
//! \copydoc CContext::getPathAndContextId()
|
//! \copydoc CContext::getPathAndContextId()
|
||||||
virtual QString getPathAndContextId() const { return this->buildPathAndContextId(ObjectPath()); }
|
virtual QString getPathAndContextId() const override { return this->buildPathAndContextId(ObjectPath()); }
|
||||||
|
|
||||||
//! Factory method
|
//! Factory method
|
||||||
static IContextSimulator *create(CCoreFacade *parent, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &conn);
|
static IContextSimulator *create(CCoreFacade *parent, CCoreFacadeConfig::ContextMode mode, BlackMisc::CDBusServer *server, QDBusConnection &conn);
|
||||||
|
|||||||
Reference in New Issue
Block a user