Fix namespacing in SectionScroller

This commit is contained in:
Sebastian Kügler 2013-02-20 01:35:27 +01:00
parent af1ca41261
commit d3ce808a41

View File

@ -41,6 +41,7 @@
import QtQuick 2.0 import QtQuick 2.0
import "private/SectionScroller.js" as Sections import "private/SectionScroller.js" as Sections
import org.kde.plasma.core 0.1 as PlasmaCore import org.kde.plasma.core 0.1 as PlasmaCore
import "." 0.1 as PlasmaComponents
/** /**
* Similar to a ScrollBar or a ScrollDecorator. * Similar to a ScrollBar or a ScrollDecorator.
@ -90,7 +91,7 @@ Item {
} }
RangeModel { PlasmaComponents.RangeModel {
id: range id: range
minimumValue: 0 minimumValue: 0
@ -104,7 +105,7 @@ Item {
} }
ScrollBar { PlasmaComponents.ScrollBar {
id: scrollBar id: scrollBar
flickableItem: listView flickableItem: listView
anchors.fill: parent anchors.fill: parent