diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | OrderCompleted.ui.qml | 6 | ||||
| -rw-r--r-- | QShopper.qmlproject | 12 |
3 files changed, 10 insertions, 9 deletions
@@ -1,3 +1,4 @@ .DS_Store *.qtds *.swp +translations.db* diff --git a/OrderCompleted.ui.qml b/OrderCompleted.ui.qml index 471fe6f..b65a6f7 100644 --- a/OrderCompleted.ui.qml +++ b/OrderCompleted.ui.qml @@ -1,6 +1,6 @@ -import QtQuick 2.15 -import QtQuick.Controls 2.15 -import QtQuick.Layouts 1.15 +import QtQuick +import QtQuick.Controls +import QtQuick.Layouts Flickable { property alias orderCompletedLabel: label diff --git a/QShopper.qmlproject b/QShopper.qmlproject index 5bc6d56..583c27f 100644 --- a/QShopper.qmlproject +++ b/QShopper.qmlproject @@ -1,4 +1,4 @@ -import QmlProject 1.1 +import QmlProject Project { mainFile: "OrderCompleted.ui.qml" @@ -7,9 +7,9 @@ Project { directory: "." } - qdsVersion: "3.9" - quickVersion: "2.15" - multilanguageSupport: true - supportedLanguages: ["en", "id"] - primaryLanguage: "en" + Files { + filter: "*.qrc" + } + + qt6Project: true } |