QML UI: Remove clearDetails() function in DiveList.qml

This function is not needed, as we will move all of the logic to
C++.

Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
This commit is contained in:
Grace Karanja 2015-08-12 15:03:20 +03:00 committed by Dirk Hohndel
parent a3bdf49b84
commit 1925b3d012
2 changed files with 0 additions and 5 deletions

View file

@ -27,10 +27,6 @@ Item {
qmlProfile.update()
}
function clearDetails() {
}
Flickable {
id: flick
width: parent.width

View file

@ -42,7 +42,6 @@ ApplicationWindow {
text: "Add Dive"
onTriggered: {
manager.addDive();
detailsWindow.clearDetails()
stackView.push(detailsWindow)
}
}