summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Mutz <[email protected]>2025-06-04 10:07:29 +0200
committerMarc Mutz <[email protected]>2025-06-04 15:43:04 +0200
commit304b59c9baeb207c58ea6d223915308f6500962d (patch)
tree3ec63479467bb99b9dbb397dfe9b6f406ccd0e2d
parent965c53579b80fc57c70a58713e846e632f42bb36 (diff)
Normalize signal/slot signatures 2025HEADdev
This is the result of running util/normalize on the code base. The following manual edits were needed: (none) Pick-to: 6.10 6.9 6.8 6.5 Change-Id: Ifc9a85bbe2d7fd77312e380b5e495e545b51f3dd Reviewed-by: Ivan Solovev <[email protected]>
-rw-r--r--src/bluetooth/qlowenergycontroller_darwin.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bluetooth/qlowenergycontroller_darwin.mm b/src/bluetooth/qlowenergycontroller_darwin.mm
index 40c95182..174156c2 100644
--- a/src/bluetooth/qlowenergycontroller_darwin.mm
+++ b/src/bluetooth/qlowenergycontroller_darwin.mm
@@ -965,10 +965,10 @@ bool QLowEnergyControllerPrivateDarwin::connectSlots(DarwinBluetooth::LECBManage
this, &QLowEnergyControllerPrivateDarwin::_q_LEnotSupported);
ok = ok && connect(notifier, SIGNAL(CBManagerError(QLowEnergyController::Error)),
this, SLOT(_q_CBManagerError(QLowEnergyController::Error)));
- ok = ok && connect(notifier, SIGNAL(CBManagerError(const QBluetoothUuid &, QLowEnergyController::Error)),
- this, SLOT(_q_CBManagerError(const QBluetoothUuid &, QLowEnergyController::Error)));
- ok = ok && connect(notifier, SIGNAL(CBManagerError(const QBluetoothUuid &, QLowEnergyService::ServiceError)),
- this, SLOT(_q_CBManagerError(const QBluetoothUuid &, QLowEnergyService::ServiceError)));
+ ok = ok && connect(notifier, SIGNAL(CBManagerError(QBluetoothUuid,QLowEnergyController::Error)),
+ this, SLOT(_q_CBManagerError(QBluetoothUuid,QLowEnergyController::Error)));
+ ok = ok && connect(notifier, SIGNAL(CBManagerError(QBluetoothUuid,QLowEnergyService::ServiceError)),
+ this, SLOT(_q_CBManagerError(QBluetoothUuid,QLowEnergyService::ServiceError)));
ok = ok && connect(notifier, &LECBManagerNotifier::mtuChanged, this,
&QLowEnergyControllerPrivateDarwin::_q_mtuChanged);
ok = ok && connect(notifier, &LECBManagerNotifier::rssiUpdated, q_ptr,