summaryrefslogtreecommitdiffstats
path: root/src/nfc/qndefrecord.cpp
diff options
context:
space:
mode:
authorCasper van Donderen <casper.vandonderen@nokia.com>2012-03-01 15:52:01 +0100
committerQt by Nokia <qt-info@nokia.com>2012-03-06 00:46:19 +0100
commit940737ffe73114d2983d69f1e1e1a518c4abb2ab (patch)
tree60abc9f6fc31bdf2f199f269a6fe1409f6c90d4e /src/nfc/qndefrecord.cpp
parent5e8cec811c586854a828b23e15885a1ebfed8bcc (diff)
Remove the usage of deprecated qdoc macros.
QDoc now has support for Doxygen style commands for italics, bold and list items. This change applies that change in QDoc to the actual documentation. Task-number: QTBUG-24578 Change-Id: I40e6d40c8ca9b5e7b98a16aab3fac57ec84be63d Reviewed-by: Alex <alex.blasche@nokia.com>
Diffstat (limited to 'src/nfc/qndefrecord.cpp')
-rw-r--r--src/nfc/qndefrecord.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nfc/qndefrecord.cpp b/src/nfc/qndefrecord.cpp
index 573b7245..9dd2ff6e 100644
--- a/src/nfc/qndefrecord.cpp
+++ b/src/nfc/qndefrecord.cpp
@@ -78,7 +78,7 @@ QTNFC_BEGIN_NAMESPACE
Specialized NDEF record classes can be easily created with the Q_DECLARE_NDEF_RECORD() and
Q_DECLARE_ISRECORDTYPE_FOR_NDEF_RECORD() macros. The following example shows the class
- declaration of the hypothetical \i {example.com:f} record type that encapsulates a single int
+ declaration of the hypothetical \e {example.com:f} record type that encapsulates a single int
property foo.
\snippet ../doc/src/snippets/nfc.cpp Specialized class definition
@@ -122,7 +122,7 @@ QTNFC_BEGIN_NAMESPACE
\a className is the name of the specialized class, \a typeNameFormat is the appropriate
QNdefRecord::TypeNameFormat for the custom type and \a type is the type without the NID or NSS
- prefixes. That is \i {example.com:f} not \i {urn:nfc:ext:example.com:f}. \a initialPayload
+ prefixes. That is \e {example.com:f} not \e {urn:nfc:ext:example.com:f}. \a initialPayload
is the initial payload of an empty record, it must be a QByteArray or a type that can be
implicitly converted into a QByteArray.
@@ -142,7 +142,7 @@ QTNFC_BEGIN_NAMESPACE
\a className is the name of the specialized class, \a typeNameFormat is the appropriate
QNdefRecord::TypeNameFormat for the custom type and \a type is the type without the NID or NSS
- prefixes. That is \i {example.com:f} not \i {urn:nfc:ext:example.com:f}.
+ prefixes. That is \e {example.com:f} not \e {urn:nfc:ext:example.com:f}.
See the secton on \l {Creating specialized NDEF record classes} for details.