diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-05-06 22:31:58 -0700 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-05-07 01:50:38 -0700 |
commit | a3473c9b0dc08ba13b079c2f72a8705131f850b7 (patch) | |
tree | fdf85e9c31cbdeb0e0842a0cb8a7e6e11483a3ce /bluetooth.h | |
parent | 57489437e0eb3057d34030325c784d6ac2dbf3fe (diff) |
libqtappfw: bluetooth: add missing parameter to powerChanged() signal
Pass along the *state* parameter to the powerChanged signal for reporting
bluetooth state
Change-Id: Idbb283c9c5a46a3ed58f59ffb58983f6e585e3d3
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'bluetooth.h')
-rw-r--r-- | bluetooth.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |