diff options
author | Liang Qi <[email protected]> | 2013-10-31 09:20:35 +0100 |
---|---|---|
committer | The Qt Project <[email protected]> | 2013-10-31 20:16:11 +0100 |
commit | 7d850df7e68e0eab0f07d5f7a03050175080fb81 (patch) | |
tree | d86a38860d9d21abfa5a57dbca04f16d485b1f68 /tests/auto/qml/qqmlmoduleplugin/nonstrictModule | |
parent | 02a8fc62491fbdee1913c2c20c939308e05f8d6f (diff) |
tests: replace nokia with qtproject in tst_qqmlmoduleplugin
Change-Id: I674da7f77dde380fb0772d5077da84de875b6ce8
Reviewed-by: Alan Alpert <[email protected]>
Diffstat (limited to 'tests/auto/qml/qqmlmoduleplugin/nonstrictModule')
-rw-r--r-- | tests/auto/qml/qqmlmoduleplugin/nonstrictModule/nonstrictModule.pro | 2 | ||||
-rw-r--r-- | tests/auto/qml/qqmlmoduleplugin/nonstrictModule/plugin.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/nonstrictModule.pro b/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/nonstrictModule.pro index 5ad1bd5eca..0d900eb707 100644 --- a/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/nonstrictModule.pro +++ b/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/nonstrictModule.pro @@ -2,7 +2,7 @@ TEMPLATE = lib CONFIG += plugin SOURCES = plugin.cpp QT = core qml -DESTDIR = ../imports/com/nokia/NonstrictModule +DESTDIR = ../imports/org/qtproject/NonstrictModule QT += core-private gui-private qml-private diff --git a/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/plugin.cpp b/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/plugin.cpp index 1cdd0f7754..f6db5bf9ea 100644 --- a/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/plugin.cpp +++ b/tests/auto/qml/qqmlmoduleplugin/nonstrictModule/plugin.cpp @@ -61,10 +61,10 @@ public: void registerTypes(const char *uri) { - Q_ASSERT(QLatin1String(uri) == "com.nokia.NonstrictModule"); + Q_ASSERT(QLatin1String(uri) == "org.qtproject.NonstrictModule"); // Install into a namespace that should be protected - qmlRegisterType<MyPluginType>("com.nokia.StrictModule", 1, 0, "MyPluginType"); + qmlRegisterType<MyPluginType>("org.qtproject.StrictModule", 1, 0, "MyPluginType"); } }; |