From 93f37bb5b8a2e7701eb9c1eb7f40936f976282dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Mon, 22 Jul 2013 17:00:02 +0200 Subject: [PATCH] Update types API --- .../contents/ui/DialogsPage.qml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/applets/testcomponentsapplet/contents/ui/DialogsPage.qml b/applets/testcomponentsapplet/contents/ui/DialogsPage.qml index a698901fb..27c006d4d 100644 --- a/applets/testcomponentsapplet/contents/ui/DialogsPage.qml +++ b/applets/testcomponentsapplet/contents/ui/DialogsPage.qml @@ -180,7 +180,7 @@ PlasmaComponents.Page { width: _h text: "Top" onClicked: { - locationDialog.location = PlasmaCore.Plasma.TopEdge; + locationDialog.location = PlasmaCore.Types.TopEdge; locationDialog.visible = !locationDialog.visible } } @@ -188,7 +188,7 @@ PlasmaComponents.Page { text: "Bottom" width: _h onClicked: { - locationDialog.location = PlasmaCore.Plasma.BottomEdge; + locationDialog.location = PlasmaCore.Types.BottomEdge; locationDialog.visible = !locationDialog.visible } } @@ -196,7 +196,7 @@ PlasmaComponents.Page { text: "Left" width: _h onClicked: { - locationDialog.location = PlasmaCore.Plasma.LeftEdge; + locationDialog.location = PlasmaCore.Types.LeftEdge; locationDialog.visible = !locationDialog.visible } } @@ -204,7 +204,7 @@ PlasmaComponents.Page { text: "Right" width: _h onClicked: { - locationDialog.location = PlasmaCore.Plasma.RightEdge; + locationDialog.location = PlasmaCore.Types.RightEdge; locationDialog.visible = !locationDialog.visible } } @@ -212,7 +212,7 @@ PlasmaComponents.Page { text: "Desktop" width: _h onClicked: { - locationDialog.location = PlasmaCore.Plasma.Desktop; + locationDialog.location = PlasmaCore.Types.Desktop; locationDialog.visible = !locationDialog.visible } } @@ -220,7 +220,7 @@ PlasmaComponents.Page { text: "Floating" width: _h onClicked: { - locationDialog.location = PlasmaCore.Plasma.Floating; + locationDialog.location = PlasmaCore.Types.Floating; locationDialog.visible = !locationDialog.visible } } @@ -228,7 +228,7 @@ PlasmaComponents.Page { text: "FullScreen" width: _h onClicked: { - locationDialog.location = PlasmaCore.Plasma.FullScreen; + locationDialog.location = PlasmaCore.Types.FullScreen; locationDialog.visible = !locationDialog.visible } }