diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-03-29 20:24:34 -0500 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-03-29 20:24:34 -0500 |
commit | 501f8ba6a486c0a79d563f08403792a0f3279ca9 (patch) | |
tree | d1a5582507ec5f631cec3c7d3be744e370b27f69 /qt-mobile | |
parent | a11e719f1a754194d00406857fb195b4b41cbd4d (diff) | |
download | subsurface-501f8ba6a486c0a79d563f08403792a0f3279ca9.tar.gz |
QML UI: remove a few obsolete properties and references
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/qml/CloudCredentials.qml | 1 | ||||
-rw-r--r-- | qt-mobile/qml/StartPage.qml | 2 | ||||
-rw-r--r-- | qt-mobile/qml/main.qml | 1 |
3 files changed, 0 insertions, 4 deletions
diff --git a/qt-mobile/qml/CloudCredentials.qml b/qt-mobile/qml/CloudCredentials.qml index ed3ff0a80..07de055fa 100644 --- a/qt-mobile/qml/CloudCredentials.qml +++ b/qt-mobile/qml/CloudCredentials.qml @@ -12,7 +12,6 @@ Item { property string username: login.text; property string password: password.text; - property bool issave: savePassword.checked; function saveCredentials() { manager.cloudUserName = login.text diff --git a/qt-mobile/qml/StartPage.qml b/qt-mobile/qml/StartPage.qml index 9ce321438..a9e23ed7b 100644 --- a/qt-mobile/qml/StartPage.qml +++ b/qt-mobile/qml/StartPage.qml @@ -9,8 +9,6 @@ ColumnLayout { id: startpage width: subsurfaceTheme.columnWidth - property int buttonWidth: width * 0.9 - function saveCredentials() { cloudCredentials.saveCredentials() } MobileComponents.Heading { diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index bb48d4cb7..439986dee 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -259,7 +259,6 @@ MobileComponents.ApplicationWindow { property Item stackView: pageStack initialPage: DiveList { - anchors.fill: detailsPage id: diveList opacity: 0 Behavior on opacity { |