aboutsummaryrefslogtreecommitdiffstats
path: root/src/remotesettings
diff options
context:
space:
mode:
authorBernd Weimer <bernd.weimer@qt.io>2022-08-08 08:22:54 +0200
committerRobert Griebl <robert.griebl@qt.io>2022-08-08 09:28:21 +0000
commit7f3bda0bdc9c4c1c704fbcf8585e3470f9f9e9f5 (patch)
tree4b6bf03ecc16ccde72399d64769f8c047ce84b8a /src/remotesettings
parent4c845c092c550d118d7ca3a4ca863aa94ec78882 (diff)
Remove QML import version numbers
Change-Id: I2810c412a595b2b5729fd57f8c4a3a1a2356c363 Reviewed-by: Robert Griebl <robert.griebl@qt.io>
Diffstat (limited to 'src/remotesettings')
-rw-r--r--src/remotesettings/app/ConnectionDialog.qml6
-rw-r--r--src/remotesettings/app/DefaultNumberAnimation.qml6
-rw-r--r--src/remotesettings/app/DevelopmentPage.qml6
-rw-r--r--src/remotesettings/app/MapsPage.qml6
-rw-r--r--src/remotesettings/app/MediaPage.qml6
-rw-r--r--src/remotesettings/app/SettingsPage.qml6
-rw-r--r--src/remotesettings/app/Vehicle2DPanel.qml2
-rw-r--r--src/remotesettings/app/VehiclePage.qml6
-rw-r--r--src/remotesettings/app/main.qml12
9 files changed, 28 insertions, 28 deletions
diff --git a/src/remotesettings/app/ConnectionDialog.qml b/src/remotesettings/app/ConnectionDialog.qml
index 652ce3ae..31406de9 100644
--- a/src/remotesettings/app/ConnectionDialog.qml
+++ b/src/remotesettings/app/ConnectionDialog.qml
@@ -29,9 +29,9 @@
** SPDX-License-Identifier: GPL-3.0
**
****************************************************************************/
-import QtQuick 2.7
-import QtQuick.Controls 2.2
-import QtQuick.Layouts 1.3
+import QtQuick
+import QtQuick.Controls
+import QtQuick.Layouts
Dialog {
id: connectionDialog
diff --git a/src/remotesettings/app/DefaultNumberAnimation.qml b/src/remotesettings/app/DefaultNumberAnimation.qml
index 6204f189..5aa5a3c1 100644
--- a/src/remotesettings/app/DefaultNumberAnimation.qml
+++ b/src/remotesettings/app/DefaultNumberAnimation.qml
@@ -30,7 +30,7 @@
**
****************************************************************************/
-import QtQuick 2.6
+import QtQuick
/*!
\qmltype DefaultNumberAnimation
@@ -48,8 +48,8 @@ import QtQuick 2.6
The following example shows how to use \l{DefaultNumberAnimation}:
\qml
- import QtQuick 2.10
- import shared.animations 1.0
+ import QtQuick
+ import shared.animations
Rectangle {
id: root
diff --git a/src/remotesettings/app/DevelopmentPage.qml b/src/remotesettings/app/DevelopmentPage.qml
index 191b3dca..79632585 100644
--- a/src/remotesettings/app/DevelopmentPage.qml
+++ b/src/remotesettings/app/DevelopmentPage.qml
@@ -28,9 +28,9 @@
** SPDX-License-Identifier: GPL-3.0
**
****************************************************************************/
-import QtQuick 2.8
-import QtQuick.Controls 2.2
-import QtQuick.Layouts 1.3
+import QtQuick
+import QtQuick.Controls
+import QtQuick.Layouts
Flickable {
diff --git a/src/remotesettings/app/MapsPage.qml b/src/remotesettings/app/MapsPage.qml
index 00a4340f..dcae7c82 100644
--- a/src/remotesettings/app/MapsPage.qml
+++ b/src/remotesettings/app/MapsPage.qml
@@ -28,9 +28,9 @@
** SPDX-License-Identifier: GPL-3.0
**
****************************************************************************/
-import QtQuick 2.8
-import QtQuick.Controls 2.2
-import QtQuick.Layouts 1.3
+import QtQuick
+import QtQuick.Controls
+import QtQuick.Layouts
Flickable {
diff --git a/src/remotesettings/app/MediaPage.qml b/src/remotesettings/app/MediaPage.qml
index c36f55f3..8bf20c49 100644
--- a/src/remotesettings/app/MediaPage.qml
+++ b/src/remotesettings/app/MediaPage.qml
@@ -28,9 +28,9 @@
** SPDX-License-Identifier: GPL-3.0
**
****************************************************************************/
-import QtQuick 2.8
-import QtQuick.Controls 2.2
-import QtQuick.Layouts 1.3
+import QtQuick
+import QtQuick.Controls
+import QtQuick.Layouts
import QtInterfaceFramework.Media
diff --git a/src/remotesettings/app/SettingsPage.qml b/src/remotesettings/app/SettingsPage.qml
index 0e370dfb..95ece985 100644
--- a/src/remotesettings/app/SettingsPage.qml
+++ b/src/remotesettings/app/SettingsPage.qml
@@ -29,9 +29,9 @@
** SPDX-License-Identifier: GPL-3.0
**
****************************************************************************/
-import QtQuick 2.8
-import QtQuick.Controls 2.2
-import QtQuick.Layouts 1.3
+import QtQuick
+import QtQuick.Controls
+import QtQuick.Layouts
Flickable {
diff --git a/src/remotesettings/app/Vehicle2DPanel.qml b/src/remotesettings/app/Vehicle2DPanel.qml
index aa19c93e..32d90612 100644
--- a/src/remotesettings/app/Vehicle2DPanel.qml
+++ b/src/remotesettings/app/Vehicle2DPanel.qml
@@ -29,7 +29,7 @@
**
****************************************************************************/
-import QtQuick 2.9
+import QtQuick
import Qt5Compat.GraphicalEffects
diff --git a/src/remotesettings/app/VehiclePage.qml b/src/remotesettings/app/VehiclePage.qml
index 57c0855c..fcf83077 100644
--- a/src/remotesettings/app/VehiclePage.qml
+++ b/src/remotesettings/app/VehiclePage.qml
@@ -28,9 +28,9 @@
** SPDX-License-Identifier: GPL-3.0
**
****************************************************************************/
-import QtQuick 2.8
-import QtQuick.Controls 2.2
-import QtQuick.Layouts 1.3
+import QtQuick
+import QtQuick.Controls
+import QtQuick.Layouts
Flickable {
id: root
diff --git a/src/remotesettings/app/main.qml b/src/remotesettings/app/main.qml
index aca9e857..1d0aff8f 100644
--- a/src/remotesettings/app/main.qml
+++ b/src/remotesettings/app/main.qml
@@ -29,15 +29,15 @@
** SPDX-License-Identifier: GPL-3.0
**
****************************************************************************/
-import QtQuick 2.7
-import QtQuick.Controls 2.2
-import QtQuick.Layouts 1.3
+import QtQuick
+import QtQuick.Controls
+import QtQuick.Layouts
import QtInterfaceFramework
import QtInterfaceFramework.Media
-import shared.com.pelagicore.remotesettings 1.0
-import shared.com.pelagicore.drivedata 1.0
+import shared.com.pelagicore.remotesettings
+import shared.com.pelagicore.drivedata
-import QtQuick.Window 2.13
+import QtQuick.Window
ApplicationWindow {
id: root