summaryrefslogtreecommitdiffstats
path: root/src/bluetooth/qbluetoothlocaldevice_qnx.cpp
diff options
context:
space:
mode:
authorSergio Ahumada <sahumada@blackberry.com>2014-01-08 16:50:54 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-08 17:39:09 +0100
commit49f098f6481213ca05b453e0acfd0102cd1a71f4 (patch)
treeeea93ca3ea26e4d022ea0ca8694aaed446406e39 /src/bluetooth/qbluetoothlocaldevice_qnx.cpp
parentbbbaa123f63f675762309f4c7fe1bb2256670fd9 (diff)
BlackBerry: Fix compilation
qBBBluetoothDebug was removed by 94f862e2 Change-Id: I85eca3bfbec2190f8a7413ec708d5bf99bc6998a Reviewed-by: Fabian Bumberger <fbumberger@rim.com>
Diffstat (limited to 'src/bluetooth/qbluetoothlocaldevice_qnx.cpp')
-rw-r--r--src/bluetooth/qbluetoothlocaldevice_qnx.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bluetooth/qbluetoothlocaldevice_qnx.cpp b/src/bluetooth/qbluetoothlocaldevice_qnx.cpp
index 1bfbe530..d0236b6a 100644
--- a/src/bluetooth/qbluetoothlocaldevice_qnx.cpp
+++ b/src/bluetooth/qbluetoothlocaldevice_qnx.cpp
@@ -102,7 +102,7 @@ QList<QBluetoothAddress> QBluetoothLocalDevice::connectedDevices() const
QDir bluetoothDevices(QStringLiteral("/pps/services/bluetooth/remote_devices/"));
QStringList allFiles = bluetoothDevices.entryList(QDir::NoDotAndDotDot| QDir::Files);
for (int i = 0; i < allFiles.size(); i++) {
- qBBBluetoothDebug() << allFiles.at(i);
+ qCDebug(QT_BT_QNX) << allFiles.at(i);
int fileId;
const char *filePath = QByteArray("/pps/services/bluetooth/remote_devices/").append(allFiles.at(i).toUtf8().constData()).constData();
if ((fileId = qt_safe_open(filePath, O_RDONLY)) == -1)
@@ -126,9 +126,9 @@ QList<QBluetoothAddress> QBluetoothLocalDevice::connectedDevices() const
devices.append(deviceAddr);
}
else if ( a == PPS_DECODER_BAD_TYPE)
- qBBBluetoothDebug() << "Type missmatch";
+ qCDebug(QT_BT_QNX) << "Type missmatch";
else
- qBBBluetoothDebug() << "An unknown error occurred while checking connected status.";
+ qCDebug(QT_BT_QNX) << "An unknown error occurred while checking connected status.";
pps_decoder_cleanup(&ppsDecoder);
}
}