mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-08-09 11:06:01 +08:00
Fix missing override keyword
This commit is contained in:
committed by
Klaus Basan
parent
c13121edbd
commit
4387c3b433
@@ -30,7 +30,7 @@ namespace BlackMisc
|
||||
//! Linear interpolator, calculation inbetween positions
|
||||
class BLACKMISC_EXPORT CInterpolatorLinear : public CInterpolator<CInterpolatorLinear>
|
||||
{
|
||||
virtual void anchor();
|
||||
virtual void anchor() override;
|
||||
|
||||
public:
|
||||
//! Constructor
|
||||
|
||||
@@ -27,7 +27,7 @@ namespace BlackMisc
|
||||
//! Cubic spline interpolator
|
||||
class BLACKMISC_EXPORT CInterpolatorSpline : public CInterpolator<CInterpolatorSpline>
|
||||
{
|
||||
virtual void anchor();
|
||||
virtual void anchor() override;
|
||||
|
||||
public:
|
||||
//! Constructor
|
||||
|
||||
@@ -77,7 +77,7 @@ namespace XSwiftBus
|
||||
CDBusError lastError() const { return m_lastError; }
|
||||
|
||||
protected:
|
||||
virtual void dispatch();
|
||||
virtual void dispatch() override;
|
||||
|
||||
private:
|
||||
void setDispatchStatus(DBusConnection *connection, DBusDispatchStatus status);
|
||||
|
||||
@@ -50,7 +50,7 @@ namespace XSwiftBus
|
||||
//! Is connected?
|
||||
bool isConnected() const;
|
||||
|
||||
void dispatch() {}
|
||||
void dispatch() override {}
|
||||
|
||||
//! Close connection
|
||||
void close();
|
||||
|
||||
Reference in New Issue
Block a user