summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSergio Ahumada <sahumada@blackberry.com>2014-03-03 16:57:46 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-03 17:09:44 +0100
commit2b5bbca85d0ad1df1912cf2885cf615be97f0a21 (patch)
treee0fb88e31efe4753447f5d2cde5aa7626da21920 /src
parent68717ee6988633cec49f36ec7bc3640e9c14e55d (diff)
Fix some typos
Change-Id: I37a1749cbb239211c2a3e2003f2f4057b840afd7 Reviewed-by: Mitch Curtis <mitch.curtis@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/bluetooth/doc/src/examples.qdoc2
-rw-r--r--src/bluetooth/qbluetoothdevicediscoveryagent_qnx.cpp2
-rw-r--r--src/nfc/qnearfieldmanager_qnx.cpp4
-rw-r--r--src/nfc/qnearfieldtagtype3.cpp2
-rw-r--r--src/nfc/qnearfieldtarget_qnx_p.h2
5 files changed, 6 insertions, 6 deletions
diff --git a/src/bluetooth/doc/src/examples.qdoc b/src/bluetooth/doc/src/examples.qdoc
index a4329b3a..d6b73ae8 100644
--- a/src/bluetooth/doc/src/examples.qdoc
+++ b/src/bluetooth/doc/src/examples.qdoc
@@ -31,7 +31,7 @@
\title Qt Bluetooth Examples
\brief Examples for the Qt Bluetooth module.
- This is a variety of examples that cover the entire range of the the Qt
+ This is a variety of examples that cover the entire range of the Qt
Bluetooth API. You will find them in their own documentation but they are also
accessible from here.
diff --git a/src/bluetooth/qbluetoothdevicediscoveryagent_qnx.cpp b/src/bluetooth/qbluetoothdevicediscoveryagent_qnx.cpp
index 9abf359d..390faf50 100644
--- a/src/bluetooth/qbluetoothdevicediscoveryagent_qnx.cpp
+++ b/src/bluetooth/qbluetoothdevicediscoveryagent_qnx.cpp
@@ -179,7 +179,7 @@ void QBluetoothDeviceDiscoveryAgentPrivate::remoteDevicesChanged(int fd)
deviceInfo.setRssi(rssi);
bool updated = false;
- //Prevent a device from beeing listed twice
+ //Prevent a device from being listed twice
for (int i=0; i < discoveredDevices.size(); i++) {
if (discoveredDevices.at(i).address() == deviceInfo.address()) {
updated = true;
diff --git a/src/nfc/qnearfieldmanager_qnx.cpp b/src/nfc/qnearfieldmanager_qnx.cpp
index b09a6ed4..14dfc755 100644
--- a/src/nfc/qnearfieldmanager_qnx.cpp
+++ b/src/nfc/qnearfieldmanager_qnx.cpp
@@ -139,13 +139,13 @@ bool QNearFieldManagerPrivateImpl::unregisterNdefMessageHandler(int handlerId)
void QNearFieldManagerPrivateImpl::requestAccess(QNearFieldManager::TargetAccessModes accessModes)
{
Q_UNUSED(accessModes);
- //Do nothing, because we dont have access modes for the target
+ //Do nothing, because we don't have access modes for the target
}
void QNearFieldManagerPrivateImpl::releaseAccess(QNearFieldManager::TargetAccessModes accessModes)
{
Q_UNUSED(accessModes);
- //Do nothing, because we dont have access modes for the target
+ //Do nothing, because we don't have access modes for the target
}
void QNearFieldManagerPrivateImpl::handleMessage(const QNdefMessage &message, QNearFieldTarget *target)
diff --git a/src/nfc/qnearfieldtagtype3.cpp b/src/nfc/qnearfieldtagtype3.cpp
index b8cc89fe..8668dda4 100644
--- a/src/nfc/qnearfieldtagtype3.cpp
+++ b/src/nfc/qnearfieldtagtype3.cpp
@@ -109,7 +109,7 @@ QNearFieldTarget::RequestId QNearFieldTagType3::serviceData(quint16 serviceCode)
}
/*!
- Writes \a data to the the service specified by \a serviceCode. Returns a request id which can
+ Writes \a data to the service specified by \a serviceCode. Returns a request id which can
be used to track the completion status of the request.
Once the request completes the response can be retrieved from the requestResponse() function.
diff --git a/src/nfc/qnearfieldtarget_qnx_p.h b/src/nfc/qnearfieldtarget_qnx_p.h
index 789d8de5..faff94e2 100644
--- a/src/nfc/qnearfieldtarget_qnx_p.h
+++ b/src/nfc/qnearfieldtarget_qnx_p.h
@@ -147,7 +147,7 @@ public:
if (!isSupported) {
nfc_tag_supports_tag_type (m_target,TAG_TYPE_ISO_15693_3, &isSupported);
tagType = TAG_TYPE_ISO_15693_3;
- //We dont support this tag
+ //We don't support this tag
if (!isSupported) {
Q_EMIT QNearFieldTarget::error(QNearFieldTarget::UnsupportedError, QNearFieldTarget::RequestId());
return QNearFieldTarget::RequestId();