aboutsummaryrefslogtreecommitdiffstats
path: root/apps/com.luxoft.vehicle/panels/Vehicle3DControlPanel.qml
diff options
context:
space:
mode:
authorRobert Griebl <robert.griebl@qt.io>2022-05-13 22:42:08 +0200
committerRobert Griebl <robert.griebl@qt.io>2022-07-01 12:41:23 +0000
commit4c845c092c550d118d7ca3a4ca863aa94ec78882 (patch)
tree1aa7f8f1ac8a0a487b7082bfea1b0c26d53f4609 /apps/com.luxoft.vehicle/panels/Vehicle3DControlPanel.qml
parentdf878f3935fe28dd3d7253b9fa59d65db331eed0 (diff)
Port to Qt 6.2
- Build is warning free on Linux - Still using qmake - Custom fragmenShaders in the cluster are not ported yet - Qt 3D models are rendered, but the Studio 3D integration is untested Change-Id: I0e410a932d6461ba29e7c945cb5e9750d6df8964 Reviewed-by: Dominik Holland <dominik.holland@qt.io> Reviewed-by: Bramastyo Harimukti Santoso <bram.harimukti@gmail.com>
Diffstat (limited to 'apps/com.luxoft.vehicle/panels/Vehicle3DControlPanel.qml')
-rw-r--r--apps/com.luxoft.vehicle/panels/Vehicle3DControlPanel.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/com.luxoft.vehicle/panels/Vehicle3DControlPanel.qml b/apps/com.luxoft.vehicle/panels/Vehicle3DControlPanel.qml
index a8b84056..215317e8 100644
--- a/apps/com.luxoft.vehicle/panels/Vehicle3DControlPanel.qml
+++ b/apps/com.luxoft.vehicle/panels/Vehicle3DControlPanel.qml
@@ -32,7 +32,6 @@
import QtQuick 2.9
import QtQuick.Layouts 1.3
-import QtGraphicalEffects 1.0
import QtQuick.Controls 2.2
import shared.controls 1.0
@@ -84,7 +83,7 @@ Item {
SupportPanel { id: supportPanel; objectName: "vehicleSupportPanel" }
EnergyPanel {
objectName: "vehicleEnergyPanel"
- onIntentToMapRequested: root.intentToMapRequested(intentId, params)
+ onIntentToMapRequested: function(intentId) { root.intentToMapRequested(intentId, params) }
}
DoorsPanel {
id: doorsPanel
@@ -92,7 +91,7 @@ Item {
onLeftDoorClicked: root.leftDoorClicked()
onRightDoorClicked: root.rightDoorClicked()
onTrunkClicked: root.trunkClicked()
- onNewRoofOpenProgressRequested: root.newRoofOpenProgressRequested(progress)
+ onNewRoofOpenProgressRequested: function(progress) { root.newRoofOpenProgressRequested(progress) }
}
TiresPanel { objectName: "vehicleTiresPanel" }
Settings3DPanel {