summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Ritt <ritt.ks@gmail.com>2015-12-04 03:30:53 +0400
committerAlex Blasche <alexander.blasche@theqtcompany.com>2015-12-04 07:51:48 +0000
commit0a9d4e32de60f31dac43973037ae7c546fb8cd6a (patch)
tree1e37aee2f335b9bcb7b529997d88c376259a58c3
parentecf8e597a21013936ea4fe195113141bca848f9a (diff)
downloadqtconnectivity-0a9d4e32de60f31dac43973037ae7c546fb8cd6a.tar.gz
Fix trivial typos
Braodcast -> Broadcast subsequemtly -> subsequently discovred -> discovered Change-Id: I1e9d83bb0b33ad15da1f05d8a7cdd8ba82232f42 Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
-rw-r--r--src/bluetooth/android/jni_android.cpp2
-rw-r--r--src/imports/bluetooth/qdeclarativebluetoothdiscoverymodel.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/bluetooth/android/jni_android.cpp b/src/bluetooth/android/jni_android.cpp
index b4209500..061d7d96 100644
--- a/src/bluetooth/android/jni_android.cpp
+++ b/src/bluetooth/android/jni_android.cpp
@@ -249,7 +249,7 @@ static bool registerNatives(JNIEnv *env)
FIND_AND_CHECK_CLASS("org/qtproject/qt5/android/bluetooth/QtBluetoothBroadcastReceiver");
if (env->RegisterNatives(clazz, methods, sizeof(methods) / sizeof(methods[0])) < 0) {
- __android_log_print(ANDROID_LOG_FATAL, logTag, "RegisterNatives for BraodcastReceiver failed");
+ __android_log_print(ANDROID_LOG_FATAL, logTag, "RegisterNatives for BroadcastReceiver failed");
return false;
}
diff --git a/src/imports/bluetooth/qdeclarativebluetoothdiscoverymodel.cpp b/src/imports/bluetooth/qdeclarativebluetoothdiscoverymodel.cpp
index 65941fec..c9559296 100644
--- a/src/imports/bluetooth/qdeclarativebluetoothdiscoverymodel.cpp
+++ b/src/imports/bluetooth/qdeclarativebluetoothdiscoverymodel.cpp
@@ -314,7 +314,7 @@ void QDeclarativeBluetoothDiscoveryModel::serviceDiscovered(const QBluetoothServ
\qmlsignal BluetoothDiscoveryModel::deviceDiscovered(string device)
This signal is emitted when a new device is discovered. \a device contains
- the Bluetooth address of the discovred device.
+ the Bluetooth address of the discovered device.
The corresponding handler is \c onDeviceDiscovered.
*/
@@ -365,7 +365,7 @@ void QDeclarativeBluetoothDiscoveryModel::setDiscoveryMode(DiscoveryMode discove
\qmlproperty bool BluetoothDiscoveryModel::running
This property starts or stops discovery. A restart of the discovery process
- requires setting this property to \c false and subsequemtly to \c true again.
+ requires setting this property to \c false and subsequently to \c true again.
*/