mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-14 08:45:36 +08:00
Fix missing override keyword
This commit is contained in:
committed by
Klaus Basan
parent
c13121edbd
commit
4387c3b433
@@ -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