diff options
-rw-r--r-- | bluetooth.cpp | 4 | ||||
-rw-r--r-- | bluetooth.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bluetooth.cpp b/bluetooth.cpp index 3af6ac3..6e21ad1 100644 --- a/bluetooth.cpp +++ b/bluetooth.cpp @@ -56,7 +56,7 @@ void Bluetooth::setPower(bool state) m_power = state; - emit powerChanged(); + emit powerChanged(m_power); } void Bluetooth::setDiscoverable(bool state) @@ -219,7 +219,7 @@ void Bluetooth::onMessageReceived(MessageType type, Message *msg) emit deviceListEvent(msg->replyData()); } else if (this->isPowerResponse(msg)) { m_power = msg->replyData().value("power").toString() == "on"; - emit powerChanged(); + emit powerChanged(m_power); } } diff --git a/bluetooth.h b/bluetooth.h index 41e1719..118516e 100644 --- a/bluetooth.h +++ b/bluetooth.h @@ -55,7 +55,7 @@ class Bluetooth : public QObject bool discoverable() const { return m_discoverable; }; signals: - void powerChanged(); + void powerChanged(bool state); void discoverableChanged(); void connectionEvent(QJsonObject data); |