Don't make signals const
This commit is contained in:
parent
1f1462e813
commit
c9533ff64e
2 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ Q_SIGNALS:
|
|||
//NOTE: The provider will destroy the DeviceLink when it's no longer accessible,
|
||||
// and every user should listen to the destroyed signal to remove its references.
|
||||
// That's the reason because there is no "onConnectionLost".
|
||||
void onConnectionReceived(const NetworkPacket& identityPacket, DeviceLink*) const;
|
||||
void onConnectionReceived(const NetworkPacket& identityPacket, DeviceLink*);
|
||||
|
||||
};
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ public Q_SLOTS:
|
|||
void work();
|
||||
|
||||
Q_SIGNALS:
|
||||
void conversationMessageRead(const QVariantMap& msg) const;
|
||||
void conversationMessageRead(const QVariantMap& msg);
|
||||
void finished();
|
||||
|
||||
private:
|
||||
|
|
Loading…
Reference in a new issue