summaryrefslogtreecommitdiffstats
path: root/tests/qmldynamicdata
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2013-12-03 12:26:53 +0200
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2013-12-03 12:31:43 +0200
commit5a3abb2517126239f1b916b7b0cbaaa624b1cb44 (patch)
tree22c868698454c7e13179f9c0e91d1b34a3d8d513 /tests/qmldynamicdata
parentf44e0e8e858c8687e40eba679f865f142b73be01 (diff)
move connectItemModelHandler() from public proxies to private
Task-id: QTRD-2672 Change-Id: I64983784e600fb4e21d7d51a2099b1f57bd8fc0f Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
Diffstat (limited to 'tests/qmldynamicdata')
-rw-r--r--tests/qmldynamicdata/qml/qmldynamicdata/main.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/qmldynamicdata/qml/qmldynamicdata/main.qml b/tests/qmldynamicdata/qml/qmldynamicdata/main.qml
index 7453606a..e8e23b75 100644
--- a/tests/qmldynamicdata/qml/qmldynamicdata/main.qml
+++ b/tests/qmldynamicdata/qml/qmldynamicdata/main.qml
@@ -43,7 +43,7 @@ Item {
if (isIncreasing) {
graphModel.append({"xPos": Math.random(), "yPos": Math.random(), "zPos": Math.random()});
if (graphModel.count == 500) {
- scatterGraph.theme.type = AbstractGraph3D.ThemeIsabelle;
+ scatterGraph.theme.type = Theme3D.ThemeIsabelle;
isIncreasing = false;
}
} else {
@@ -51,7 +51,7 @@ Item {
// random index to add coverage.
graphModel.remove(2);
if (graphModel.count == 2) {
- scatterGraph.theme.type = AbstractGraph3D.ThemeDigia;
+ scatterGraph.theme.type = Theme3D.ThemeDigia;
isIncreasing = true;
}
}
@@ -68,7 +68,7 @@ Item {
id: scatterGraph
width: dataView.width
height: dataView.height
- theme: Theme3D { type: AbstractGraph3D.ThemeDigia }
+ theme: Theme3D { type: Theme3D.ThemeDigia }
shadowQuality: AbstractGraph3D.ShadowQualitySoftMedium
scene.activeCamera.yRotation: 30.0
inputHandler: null