aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/localstorage/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick/localstorage/main.cpp')
-rw-r--r--examples/quick/localstorage/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/localstorage/main.cpp b/examples/quick/localstorage/main.cpp
index 1b2f25fd0f..56c4552bc8 100644
--- a/examples/quick/localstorage/main.cpp
+++ b/examples/quick/localstorage/main.cpp
@@ -1,4 +1,4 @@
-// Copyright (C) 2017 The Qt Company Ltd.
+// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <QGuiApplication>
#include <QQmlApplicationEngine>
@@ -8,7 +8,7 @@ int main(int argc, char *argv[])
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
- engine.load(QUrl(QStringLiteral("qrc:/localstorage/localstorage.qml")));
+ engine.load(QUrl(QStringLiteral("qrc:/qt/qml/localstorage/localstorage.qml")));
return app.exec();
}