mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Bluetooth support: quick build fix for Qt5.2
The InvalidBluetoothAdapterError error code wasn't introduced until Qt5.3, so let's not test for it on older versions of Qt. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
e3a8ff7493
commit
947fda14c5
1 changed files with 2 additions and 0 deletions
|
@ -362,6 +362,7 @@ void BtDeviceSelectionDialog::initializeDeviceDiscoveryAgent()
|
|||
// Intialize the discovery agent
|
||||
remoteDeviceDiscoveryAgent = new QBluetoothDeviceDiscoveryAgent(localDevice->address());
|
||||
|
||||
#if QT_VERSION >= 0x050300
|
||||
// Test if the discovery agent was successfully created
|
||||
if (remoteDeviceDiscoveryAgent->error() == QBluetoothDeviceDiscoveryAgent::InvalidBluetoothAdapterError) {
|
||||
ui->dialogStatus->setText(QString("The device discovery agent was not created because the %1 address does not "
|
||||
|
@ -371,6 +372,7 @@ void BtDeviceSelectionDialog::initializeDeviceDiscoveryAgent()
|
|||
ui->clear->setEnabled(false);
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
connect(remoteDeviceDiscoveryAgent, SIGNAL(deviceDiscovered(QBluetoothDeviceInfo)),
|
||||
this, SLOT(addRemoteDevice(QBluetoothDeviceInfo)));
|
||||
|
|
Loading…
Reference in a new issue