summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJohan Klokkhammer Helsing <johan.helsing@qt.io>2016-05-20 09:58:52 +0200
committerJohan Helsing <johan.helsing@qt.io>2016-05-20 09:42:22 +0000
commit8817a981389b4f22a614f258f3575360645f2fd9 (patch)
treea7ff520d4c685efc0472003e6aad272aea3bec9c /examples
parentd357d744bf58a6148c8ed05a13496d7a8ff84d02 (diff)
Fix build
Change-Id: I8f1338fa6ed807ac309f2b6d7a8265c1bae144b8 Reviewed-by: Giulio Camuffo <giulio.camuffo@kdab.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/wayland/custom-extension/qmltestapp/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/wayland/custom-extension/qmltestapp/main.cpp b/examples/wayland/custom-extension/qmltestapp/main.cpp
index 23e280ca4..6140862d9 100644
--- a/examples/wayland/custom-extension/qmltestapp/main.cpp
+++ b/examples/wayland/custom-extension/qmltestapp/main.cpp
@@ -49,7 +49,7 @@ int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
- qmlRegisterType<QtWaylandClient::CustomExtension>("com.theqtcompany.customextension", 1, 0, "CustomExtension");
+ qmlRegisterType<CustomExtension>("com.theqtcompany.customextension", 1, 0, "CustomExtension");
QQmlApplicationEngine engine;
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));