Don't make signals const

This commit is contained in:
Nicolas Fella 2019-02-28 14:13:35 +01:00
parent 1f1462e813
commit c9533ff64e
2 changed files with 2 additions and 2 deletions

View file

@ -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*);
};

View file

@ -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: