Created
February 11, 2014 11:23
-
-
Save dturner/8933122 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
qtconnectivity$ git diff | |
diff --git a/src/bluetooth/qbluetoothserver_android.cpp b/src/bluetooth/qbluetoothserver_android.cpp | |
index ff100d3..a2d0875 100644 | |
--- a/src/bluetooth/qbluetoothserver_android.cpp | |
+++ b/src/bluetooth/qbluetoothserver_android.cpp | |
@@ -145,7 +145,7 @@ bool QBluetoothServer::listen(const QBluetoothAddress &localAdapter, quint16 por | |
} | |
if (!found) { | |
- qWarning(QT_BT_ANDROID) << localAdapter.toString() << "is not a valid local Bt adapter"; | |
+ qCWarning(QT_BT_ANDROID) << localAdapter.toString() << "is not a valid local Bt adapter"; | |
return false; | |
} | |
} | |
diff --git a/src/bluetooth/qbluetoothserviceinfo_android.cpp b/src/bluetooth/qbluetoothserviceinfo_android.cpp | |
index 82707a2..078554d 100644 | |
--- a/src/bluetooth/qbluetoothserviceinfo_android.cpp | |
+++ b/src/bluetooth/qbluetoothserviceinfo_android.cpp | |
@@ -105,7 +105,7 @@ bool QBluetoothServiceInfoPrivate::registerService(const QBluetoothAddress& loca | |
} | |
if (!found) { | |
- qWarning(QT_BT_ANDROID) << localAdapter.toString() << "is not a valid local Bt adapter"; | |
+ qCWarning(QT_BT_ANDROID) << localAdapter.toString() << "is not a valid local Bt adapter"; | |
return false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment