From: Luciano Montanaro Date: Thu, 12 Jan 2012 21:40:50 +0000 (+0100) Subject: Removed unneeded element X-Git-Tag: tags/0.4.82~5 X-Git-Url: http://git.maemo.org/git/?p=quandoparte;a=commitdiff_plain;h=df018917157f35c9cea37f087c2a3c04bb77c571 Removed unneeded element --- diff --git a/application/resources/harmattan/qml/StationPage.qml b/application/resources/harmattan/qml/StationPage.qml index 5fe1e60..d8d502a 100644 --- a/application/resources/harmattan/qml/StationPage.qml +++ b/application/resources/harmattan/qml/StationPage.qml @@ -102,13 +102,10 @@ Page { onNameChanged: schedule.fetch(name) onLayoutChanged: view.state = "ready" } - Settings { - id: settings + Component.onCompleted: { + updateTimer.timeout.connect(updateStation) } - Component.onCompleted: { - updateTimer.timeout.connect(updateStation) - } - function updateStation() { + function updateStation() { schedule.fetch(schedule.name) - } + } }