aboutsummaryrefslogtreecommitdiffstats
path: root/examples/ivicore/qface-tutorial/chapter4-simulation-behavior/backend_simulator/simulation.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ivicore/qface-tutorial/chapter4-simulation-behavior/backend_simulator/simulation.qml')
-rw-r--r--examples/ivicore/qface-tutorial/chapter4-simulation-behavior/backend_simulator/simulation.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/ivicore/qface-tutorial/chapter4-simulation-behavior/backend_simulator/simulation.qml b/examples/ivicore/qface-tutorial/chapter4-simulation-behavior/backend_simulator/simulation.qml
index 39c0ca4..5d22939 100644
--- a/examples/ivicore/qface-tutorial/chapter4-simulation-behavior/backend_simulator/simulation.qml
+++ b/examples/ivicore/qface-tutorial/chapter4-simulation-behavior/backend_simulator/simulation.qml
@@ -52,13 +52,13 @@
****************************************************************************/
import QtQuick 2.10
-import Example.IVI.InstrumentCluster.simulation 1.0
+import Example.IVI.InstrumentClusterModule.simulation 1.0
QtObject {
property var settings : IviSimulator.findData(IviSimulator.simulationData, "InstrumentCluster")
property bool defaultInitialized: false
property LoggingCategory qLcInstrumentCluster: LoggingCategory {
- name: "example.ivi.instrumentcluster.simulation.instrumentclusterbackend"
+ name: "example.ivi.instrumentclustermodule.simulation.instrumentclusterbackend"
}
property var backend : InstrumentClusterBackend {
@@ -107,7 +107,7 @@ QtObject {
ScriptAction {
script: {
- backend.currentWarning = InstrumentCluster.warning("red","LOW FUEL", "images/fuelsymbol_orange.png")
+ backend.currentWarning = InstrumentClusterModule.warning("red","LOW FUEL", "images/fuelsymbol_orange.png")
}
}
@@ -120,7 +120,7 @@ QtObject {
ScriptAction {
script: {
- backend.currentWarning = InstrumentCluster.warning()
+ backend.currentWarning = InstrumentClusterModule.warning()
}
}
}