summaryrefslogtreecommitdiffstats
path: root/src/imports/nfc/plugins.qmltypes
diff options
context:
space:
mode:
authorSze Howe Koh <szehowe.koh@gmail.com>2013-10-04 21:53:07 +0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-04 17:36:53 +0200
commit590fa9441c01ec1acf987091929a4d07d744b72b (patch)
treee6a81ffddb4b9689c48ccf4e193270d2db076c95 /src/imports/nfc/plugins.qmltypes
parenteefe516bd08771d037afafc833764ebaa6ff213e (diff)
Rename QDeclarativeNdefRecord -> QQmlNdefRecord
The QDeclarative* class prefix is associated with the now-deprecated Qt Declarative module (a.k.a. Qt Quick 1). In Qt Quick 2, all QDeclarative* classes have been renamed to QQml* or QQuick* Also rename the example, QDeclarativeNdefFooRecord -> QQmlNdefFooRecord Change-Id: Ie81a9ea2fdda145ad749afb07ef758f791b278d0 Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
Diffstat (limited to 'src/imports/nfc/plugins.qmltypes')
-rw-r--r--src/imports/nfc/plugins.qmltypes10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/imports/nfc/plugins.qmltypes b/src/imports/nfc/plugins.qmltypes
index 2d8eef8e..3e7cb4e4 100644
--- a/src/imports/nfc/plugins.qmltypes
+++ b/src/imports/nfc/plugins.qmltypes
@@ -18,13 +18,13 @@ Module {
}
Component {
name: "QDeclarativeNdefMimeRecord"
- prototype: "QDeclarativeNdefRecord"
+ prototype: "QQmlNdefRecord"
exports: ["QtNfc/NdefMimeRecord 5.0"]
exportMetaObjectRevisions: [0]
Property { name: "uri"; type: "string"; isReadonly: true }
}
Component {
- name: "QDeclarativeNdefRecord"
+ name: "QQmlNdefRecord"
prototype: "QObject"
exports: ["QtNfc/NdefRecord 5.0"]
exportMetaObjectRevisions: [0]
@@ -33,7 +33,7 @@ Module {
}
Component {
name: "QDeclarativeNdefTextRecord"
- prototype: "QDeclarativeNdefRecord"
+ prototype: "QQmlNdefRecord"
exports: ["QtNfc/NdefTextRecord 5.0"]
exportMetaObjectRevisions: [0]
Enum {
@@ -51,7 +51,7 @@ Module {
}
Component {
name: "QDeclarativeNdefUriRecord"
- prototype: "QDeclarativeNdefRecord"
+ prototype: "QQmlNdefRecord"
exports: ["QtNfc/NdefUriRecord 5.0"]
exportMetaObjectRevisions: [0]
Property { name: "uri"; type: "string" }
@@ -63,7 +63,7 @@ Module {
exportMetaObjectRevisions: [0]
Property {
name: "messageRecords"
- type: "QDeclarativeNdefRecord"
+ type: "QQmlNdefRecord"
isList: true
isReadonly: true
}