summaryrefslogtreecommitdiffstats
path: root/src/android
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@qt.io>2017-01-18 14:35:04 +0100
committerAlex Blasche <alexander.blasche@qt.io>2017-01-24 14:49:31 +0000
commit6210bfa8f745c0af3e0d178bd03f99186aae34d6 (patch)
treee1ef5c2aa5ad710fe38543bb5d69a353b950d453 /src/android
parent2e60c570b46e69599861969fc949551a058e902d (diff)
Fix a lot of minor issues in the new Android peripheral backend
Change-Id: I3aa89926c5237ee8da18b73f66f0c7a321a83c91 Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'src/android')
-rw-r--r--src/android/bluetooth/src/org/qtproject/qt5/android/bluetooth/QtBluetoothLEServer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/bluetooth/src/org/qtproject/qt5/android/bluetooth/QtBluetoothLEServer.java b/src/android/bluetooth/src/org/qtproject/qt5/android/bluetooth/QtBluetoothLEServer.java
index d256fe8c..76b738bd 100644
--- a/src/android/bluetooth/src/org/qtproject/qt5/android/bluetooth/QtBluetoothLEServer.java
+++ b/src/android/bluetooth/src/org/qtproject/qt5/android/bluetooth/QtBluetoothLEServer.java
@@ -108,7 +108,7 @@ public class QtBluetoothLEServer {
{
@Override
public void onConnectionStateChange(BluetoothDevice device, int status, int newState) {
- Log.w(TAG, "Our gatt server connection state changed, new state: " + Integer.toString(newState));
+ Log.w(TAG, "Our gatt server connection state changed, new state: " + newState);
super.onConnectionStateChange(device, status, newState);
int qtControllerState = 0;