summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative-radio/view.qml16
1 files changed, 4 insertions, 12 deletions
diff --git a/examples/declarative-radio/view.qml b/examples/declarative-radio/view.qml
index cb7623497..4e2882d45 100644
--- a/examples/declarative-radio/view.qml
+++ b/examples/declarative-radio/view.qml
@@ -120,7 +120,7 @@ Rectangle {
MouseArea {
anchors.fill: parent
- onClicked: radio.searchBackward();
+ onClicked: radio.scanDown();
}
}
Rectangle {
@@ -141,11 +141,7 @@ Rectangle {
MouseArea {
anchors.fill: parent
- onClicked: {
- var f = radio.frequency;
- f = f - radio.frequencyStep;
- radio.setFrequency(f);
- }
+ onClicked: radio.tuneDown();
}
}
Rectangle {
@@ -166,11 +162,7 @@ Rectangle {
MouseArea {
anchors.fill: parent
- onClicked: {
- var f = radio.frequency;
- f = f + radio.frequencyStep;
- radio.setFrequency(f);
- }
+ onClicked: radio.tuneUp();
}
}
Rectangle {
@@ -191,7 +183,7 @@ Rectangle {
MouseArea {
anchors.fill: parent
- onClicked: radio.searchForward();
+ onClicked: radio.scanUp();
}
}
}