summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/bluez/hcimanager.cpp
diff options
context:
space:
mode:
authorMårten Nordheim <marten.nordheim@qt.io>2020-03-24 09:55:43 +0100
committerMårten Nordheim <marten.nordheim@qt.io>2020-04-29 11:37:30 +0000
commiteb908370e0c8212cf81f080f4bdbf663273b8063 (patch)
treeb4951bfa5c337e619a9b619ba8f31bd99012817e /src/bluetooth/bluez/hcimanager.cpp
parent62c1f2bf339bd9ee1d5bcee02d4b25fb11023a09 (diff)
Update connects to QSocketNotifier::activatedv5.15.0-rc2v5.15.0-rc1v5.15.0
The int-overload produces a warning Task-number: QTBUG-70441 Change-Id: I1c787e0a5852388d5a08630a51189f9c0661968e Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'src/bluetooth/bluez/hcimanager.cpp')
-rw-r--r--src/bluetooth/bluez/hcimanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bluetooth/bluez/hcimanager.cpp b/src/bluetooth/bluez/hcimanager.cpp
index 2a7c9060..e2635fae 100644
--- a/src/bluetooth/bluez/hcimanager.cpp
+++ b/src/bluetooth/bluez/hcimanager.cpp
@@ -88,7 +88,7 @@ HciManager::HciManager(const QBluetoothAddress& deviceAdapter, QObject *parent)
}
notifier = new QSocketNotifier(hciSocket, QSocketNotifier::Read, this);
- connect(notifier, SIGNAL(activated(int)), this, SLOT(_q_readNotify()));
+ connect(notifier, SIGNAL(activated(QSocketDescriptor)), this, SLOT(_q_readNotify()));
}