summaryrefslogtreecommitdiffstats
path: root/src/imports/nfc
diff options
context:
space:
mode:
authorMichael Zanetti <michael.zanetti@nokia.com>2012-03-21 17:21:51 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-22 14:55:36 +0100
commit84adb801e46418e5625fdcd025bd65d123818793 (patch)
tree1a2da9daa484c9cf1dd6ec5da8f59366ddbd89d7 /src/imports/nfc
parent9be870b80ea0f8a1d41558cdc4281cd3eec90c21 (diff)
Changed all occurrances of QML "element" to QML "type" as agreed by the docs team
Change-Id: I812fda9282eaa6f25d0b198d6729ff99899bfe62 Reviewed-by: Alex <alex.blasche@nokia.com>
Diffstat (limited to 'src/imports/nfc')
-rw-r--r--src/imports/nfc/qdeclarativendeffilter.cpp6
-rw-r--r--src/imports/nfc/qdeclarativendefmimerecord.cpp6
-rw-r--r--src/imports/nfc/qdeclarativendeftextrecord.cpp6
-rw-r--r--src/imports/nfc/qdeclarativendefurirecord.cpp4
-rw-r--r--src/imports/nfc/qdeclarativenearfield.cpp6
-rw-r--r--src/imports/nfc/qdeclarativenearfieldsocket.cpp6
6 files changed, 17 insertions, 17 deletions
diff --git a/src/imports/nfc/qdeclarativendeffilter.cpp b/src/imports/nfc/qdeclarativendeffilter.cpp
index cdc0081e..25c97fe9 100644
--- a/src/imports/nfc/qdeclarativendeffilter.cpp
+++ b/src/imports/nfc/qdeclarativendeffilter.cpp
@@ -43,7 +43,7 @@
/*!
\qmlclass NdefFilter QDeclarativeNdefFilter
- \brief The NdefFilter element represents a filtering constraint for NDEF message records.
+ \brief The NdefFilter type represents a filtering constraint for NDEF message records.
\ingroup nfc-qml
\inmodule QtNfc
@@ -51,9 +51,9 @@
\sa NearField
\sa QNdefFilter
- The NdefFilter element was introduced in \b {QtNfc 5.0}.
+ The NdefFilter type was introduced in \b {QtNfc 5.0}.
- The NdefFilter element is used with the NearField element to read NDEF messages from NFC Forum
+ The NdefFilter type is used with the NearField type to read NDEF messages from NFC Forum
tags that match a given structure.
\code
diff --git a/src/imports/nfc/qdeclarativendefmimerecord.cpp b/src/imports/nfc/qdeclarativendefmimerecord.cpp
index 1d5a3280..5252d1c3 100644
--- a/src/imports/nfc/qdeclarativendefmimerecord.cpp
+++ b/src/imports/nfc/qdeclarativendefmimerecord.cpp
@@ -43,16 +43,16 @@
/*!
\qmlclass NdefMimeRecord QDeclarativeNdefMimeRecord
- \brief The NdefMimeRecord element represents an NFC MIME record.
+ \brief The NdefMimeRecord type represents an NFC MIME record.
\ingroup connectivity-nfc
\inmodule QtNfc
\inherits NdefRecord
- The NdefMimeRecord element was introduced in \b {QtNfc 5.0}.
+ The NdefMimeRecord type was introduced in \b {QtNfc 5.0}.
- The NdefMimeRecord element can contain data with an associated MIME type. The data is
+ The NdefMimeRecord type can contain data with an associated MIME type. The data is
accessible from the uri in the \l {NdefMimeRecord::uri}{uri} property.
*/
diff --git a/src/imports/nfc/qdeclarativendeftextrecord.cpp b/src/imports/nfc/qdeclarativendeftextrecord.cpp
index f55b1e62..a94269cb 100644
--- a/src/imports/nfc/qdeclarativendeftextrecord.cpp
+++ b/src/imports/nfc/qdeclarativendeftextrecord.cpp
@@ -45,7 +45,7 @@
/*!
\qmlclass NdefTextRecord QDeclarativeNdefTextRecord
- \brief The NdefTextRecord element represents an NFC RTD-Text NDEF record.
+ \brief The NdefTextRecord type represents an NFC RTD-Text NDEF record.
\ingroup nfc-qml
\inmodule QtNfc
@@ -54,9 +54,9 @@
\sa QNdefNfcTextRecord
- The NdefTextRecord element was introduced in \b {QtNfc 5.0}.
+ The NdefTextRecord type was introduced in \b {QtNfc 5.0}.
- The NdefTextRecord element contains a localized piece of text that can be display to the user.
+ The NdefTextRecord type contains a localized piece of text that can be display to the user.
An NDEF message may contain many text records for different locales, it is up to the
application to select the most appropriate one to display to the user. The localeMatch
property can be used to determine if the text record has been matched.
diff --git a/src/imports/nfc/qdeclarativendefurirecord.cpp b/src/imports/nfc/qdeclarativendefurirecord.cpp
index 0eada170..18b72bf8 100644
--- a/src/imports/nfc/qdeclarativendefurirecord.cpp
+++ b/src/imports/nfc/qdeclarativendefurirecord.cpp
@@ -45,7 +45,7 @@
/*!
\qmlclass NdefUriRecord QDeclarativeNdefUriRecord
- \brief The NdefUriRecord element represents an NFC RTD-URI NDEF record.
+ \brief The NdefUriRecord type represents an NFC RTD-URI NDEF record.
\ingroup nfc-qml
\inmodule QtNfc
@@ -54,7 +54,7 @@
\sa QNdefNfcUriRecord
- The NdefUriRecord element was introduced in \b {QtNfc 5.0}.
+ The NdefUriRecord type was introduced in \b {QtNfc 5.0}.
*/
/*!
diff --git a/src/imports/nfc/qdeclarativenearfield.cpp b/src/imports/nfc/qdeclarativenearfield.cpp
index 5f7bde4a..e510e8ae 100644
--- a/src/imports/nfc/qdeclarativenearfield.cpp
+++ b/src/imports/nfc/qdeclarativenearfield.cpp
@@ -51,7 +51,7 @@
/*!
\qmlclass NearField QDeclarativeNearField
- \brief The NearField element provides access to NDEF messages stored on NFC Forum tags.
+ \brief The NearField type provides access to NDEF messages stored on NFC Forum tags.
\ingroup nfc-qml
\inmodule QtNfc
@@ -63,9 +63,9 @@
\sa QNdefMessage
\sa QNdefRecord
- The NearField element was introduced in \b {QtNfc 5.0}.
+ The NearField type was introduced in \b {QtNfc 5.0}.
- The NearField element can be used to read NDEF messages from NFC Forum tags. Set the \l filter
+ The NearField type can be used to read NDEF messages from NFC Forum tags. Set the \l filter
and \l orderMatch properties to match the required NDEF messages. Once an NDEF message is
successfully read from a tag the \l messageRecords property is updated.
diff --git a/src/imports/nfc/qdeclarativenearfieldsocket.cpp b/src/imports/nfc/qdeclarativenearfieldsocket.cpp
index 205ef343..c1b225ef 100644
--- a/src/imports/nfc/qdeclarativenearfieldsocket.cpp
+++ b/src/imports/nfc/qdeclarativenearfieldsocket.cpp
@@ -45,7 +45,7 @@
/*!
\qmlclass NearFieldSocket QDeclarativeNearFieldSocket
- \brief The NearFieldSocket element represents an LLCP socket.
+ \brief The NearFieldSocket type represents an LLCP socket.
\ingroup nfc-qml
\inmodule QtNfc
@@ -53,9 +53,9 @@
\sa QLlcpSocket
\sa QLlcpServer
- The NearFieldSocket element was introduced in \b {QtNfc 5.0}.
+ The NearFieldSocket type was introduced in \b {QtNfc 5.0}.
- The NearFieldSocket element can be used to create a peer-to-peer connection over NFC LLCP
+ The NearFieldSocket type can be used to create a peer-to-peer connection over NFC LLCP
sockets. NearfieldSocket can be used for both client and server side sockets.
*/