summaryrefslogtreecommitdiffstats
path: root/weather-qml/HungItem.qml
diff options
context:
space:
mode:
Diffstat (limited to 'weather-qml/HungItem.qml')
-rw-r--r--weather-qml/HungItem.qml28
1 files changed, 0 insertions, 28 deletions
diff --git a/weather-qml/HungItem.qml b/weather-qml/HungItem.qml
deleted file mode 100644
index cf14c09..0000000
--- a/weather-qml/HungItem.qml
+++ /dev/null
@@ -1,28 +0,0 @@
-import Qt 4.6
-
-Item {
- id: root
-
- property real itemX
- property real itemY
- property real finalY
- property string lineImage
- property string itemImage
-
- width: item.width
- height: itemY + item.height
-
- Image {
- id: line
- source: root.lineImage
- anchors.horizontalCenter: root.horizontalCenter
- }
-
- Image {
- id: item
- x: root.itemX
- y: root.itemY
- source: root.itemImage
- anchors.bottom: parent.bottom
- }
-}