fixing routing.py bug, if time is 24:00
[pywienerlinien] / qml / UpdateDialog.qml
1 import QtQuick 1.1
2 import com.nokia.meego 1.0
3
4 Dialog {
5    id: updateDialog
6    property alias text: messageContent.text
7
8    content:Item {
9      id: message
10      height: 85
11      width: parent.width
12      Text {
13        id: messageContent
14        font.pixelSize: 22
15        anchors.centerIn: parent
16        color: "white"
17        text: "If you see this message\nsend me an email\nto <gotovienna@logic.at>\ndescribe what you're doing getting this message"
18      }
19    }
20
21    buttons: ButtonRow {
22      style: ButtonStyle { }
23        anchors.horizontalCenter: parent.horizontalCenter
24        Button {text: "OK"; onClicked: updateDialog.accept()}
25      }
26    }