aboutsummaryrefslogtreecommitdiff
path: root/qml/pages/AboutPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/pages/AboutPage.qml')
-rw-r--r--qml/pages/AboutPage.qml31
1 files changed, 0 insertions, 31 deletions
diff --git a/qml/pages/AboutPage.qml b/qml/pages/AboutPage.qml
deleted file mode 100644
index 0810846..0000000
--- a/qml/pages/AboutPage.qml
+++ /dev/null
@@ -1,31 +0,0 @@
-import QtQuick 2.0
-import Sailfish.Silica 1.0
-import "helpers.js" as H
-
-Page {
- id: page
-
- SilicaFlickable {
- anchors.fill: parent
-
- Column {
- width: parent.width
- spacing: Theme.paddingLarge
-
- PageHeader {
- title: "About"
- }
-
- TextArea {
- readOnly: true
- width: parent.width
- horizontalAlignment: TextEdit.AlignHCenter
- text: "Unit Master\nCopyright 2013 Oskari Timperi\n\nThe
-application icon is derived from the Meanicons Icon Set\n(http://www.meanicons.com/)."
- }
- }
-
- }
-}
-
-