mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-05-04 00:45:46 +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
|
//! Linear interpolator, calculation inbetween positions
|
||||||
class BLACKMISC_EXPORT CInterpolatorLinear : public CInterpolator<CInterpolatorLinear>
|
class BLACKMISC_EXPORT CInterpolatorLinear : public CInterpolator<CInterpolatorLinear>
|
||||||
{
|
{
|
||||||
virtual void anchor();
|
virtual void anchor() override;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
//! Constructor
|
//! Constructor
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ namespace BlackMisc
|
|||||||
//! Cubic spline interpolator
|
//! Cubic spline interpolator
|
||||||
class BLACKMISC_EXPORT CInterpolatorSpline : public CInterpolator<CInterpolatorSpline>
|
class BLACKMISC_EXPORT CInterpolatorSpline : public CInterpolator<CInterpolatorSpline>
|
||||||
{
|
{
|
||||||
virtual void anchor();
|
virtual void anchor() override;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
//! Constructor
|
//! Constructor
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ namespace XSwiftBus
|
|||||||
CDBusError lastError() const { return m_lastError; }
|
CDBusError lastError() const { return m_lastError; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void dispatch();
|
virtual void dispatch() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void setDispatchStatus(DBusConnection *connection, DBusDispatchStatus status);
|
void setDispatchStatus(DBusConnection *connection, DBusDispatchStatus status);
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ namespace XSwiftBus
|
|||||||
//! Is connected?
|
//! Is connected?
|
||||||
bool isConnected() const;
|
bool isConnected() const;
|
||||||
|
|
||||||
void dispatch() {}
|
void dispatch() override {}
|
||||||
|
|
||||||
//! Close connection
|
//! Close connection
|
||||||
void close();
|
void close();
|
||||||
|
|||||||
Reference in New Issue
Block a user