From 09004608422398ed82d7ed4588e1b8ba2060f2d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Wed, 20 Feb 2013 01:34:07 +0100 Subject: [PATCH] Fix namespacing in SelectionDialog --- .../plasmacomponents/qml/SelectionDialog.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/declarativeimports/plasmacomponents/qml/SelectionDialog.qml b/src/declarativeimports/plasmacomponents/qml/SelectionDialog.qml index fbc9f011d..95a3f51d4 100644 --- a/src/declarativeimports/plasmacomponents/qml/SelectionDialog.qml +++ b/src/declarativeimports/plasmacomponents/qml/SelectionDialog.qml @@ -43,7 +43,7 @@ import QtQuick 2.0 import org.kde.plasma.core 0.1 as PlasmaCore -import "." 0.1 +import "." 0.1 as PlasmaComponents /** * A plasma themed SelectionDialog, which can be customized by overriding the @@ -52,7 +52,7 @@ import "." 0.1 * By default SelectionDialog provides a scrollable list of textual menu items. * The user can choose one item from the list at a time. */ -CommonDialog { +PlasmaComponents.CommonDialog { id: root // Common API @@ -146,7 +146,7 @@ CommonDialog { } } - ScrollBar { + PlasmaComponents.ScrollBar { id: scrollBar flickableItem: listView visible: listView.contentHeight > contentItem.height