Skip to content

Instantly share code, notes, and snippets.

@dturner
Created February 11, 2014 11:23
Show Gist options
  • Save dturner/8933122 to your computer and use it in GitHub Desktop.
Save dturner/8933122 to your computer and use it in GitHub Desktop.
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