summaryrefslogtreecommitdiffstats
path: root/src/imports/nfc/qdeclarativendefmimerecord.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/nfc/qdeclarativendefmimerecord.cpp')
-rw-r--r--src/imports/nfc/qdeclarativendefmimerecord.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/imports/nfc/qdeclarativendefmimerecord.cpp b/src/imports/nfc/qdeclarativendefmimerecord.cpp
index 46ba975d..3141c94f 100644
--- a/src/imports/nfc/qdeclarativendefmimerecord.cpp
+++ b/src/imports/nfc/qdeclarativendefmimerecord.cpp
@@ -43,15 +43,14 @@
/*!
\qmltype NdefMimeRecord
- \brief The NdefMimeRecord type represents an NFC MIME record.
+ \since 5.2
+ \brief Represents an NFC MIME record.
\ingroup connectivity-nfc
- \inqmlmodule QtNfc 5.0
+ \inqmlmodule QtNfc
\inherits NdefRecord
- The NdefMimeRecord type was introduced in \b {QtNfc 5.0}.
-
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.
*/
@@ -80,12 +79,12 @@ static inline QNdefRecord castToMimeRecord(const QNdefRecord &record)
}
QDeclarativeNdefMimeRecord::QDeclarativeNdefMimeRecord(QObject *parent)
-: QDeclarativeNdefRecord(createMimeRecord(), parent)
+: QQmlNdefRecord(createMimeRecord(), parent)
{
}
QDeclarativeNdefMimeRecord::QDeclarativeNdefMimeRecord(const QNdefRecord &record, QObject *parent)
-: QDeclarativeNdefRecord(castToMimeRecord(record), parent)
+: QQmlNdefRecord(castToMimeRecord(record), parent)
{
}