From 5a3abb2517126239f1b916b7b0cbaaa624b1cb44 Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Tue, 3 Dec 2013 12:26:53 +0200 Subject: move connectItemModelHandler() from public proxies to private MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Task-id: QTRD-2672 Change-Id: I64983784e600fb4e21d7d51a2099b1f57bd8fc0f Reviewed-by: Tomi Korpipää --- tests/qmldynamicdata/qml/qmldynamicdata/main.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') 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 -- cgit v1.2.3