diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2010-02-23 03:42:25 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2010-02-23 03:42:25 (GMT) |
commit | c48ce6292d52b6f0a2a0ba54109a426d33eb7842 (patch) | |
tree | 5731adda559ef95e52e19a78e912338dfe39a878 | |
parent | 27f35a9cb588ad1dd595fafedc27e5a216bebf48 (diff) | |
download | Qt-c48ce6292d52b6f0a2a0ba54109a426d33eb7842.zip Qt-c48ce6292d52b6f0a2a0ba54109a426d33eb7842.tar.gz Qt-c48ce6292d52b6f0a2a0ba54109a426d33eb7842.tar.bz2 |
Work.
-rw-r--r-- | tests/auto/declarative/qmlmoduleplugin/plugin/plugin.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlmoduleplugin/plugin/plugin.cpp b/tests/auto/declarative/qmlmoduleplugin/plugin/plugin.cpp index 0d7f985..ddd1e5e 100644 --- a/tests/auto/declarative/qmlmoduleplugin/plugin/plugin.cpp +++ b/tests/auto/declarative/qmlmoduleplugin/plugin/plugin.cpp @@ -77,6 +77,11 @@ public: { return QStringList() << QLatin1String("com.nokia.AutoTestQmlPluginType"); } + + void defineModule(const QString& uri) + { + Q_ASSERT(uri == "com.nokia.AutoTestQmlPluginType"); + } }; #include "plugin.moc" |