summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Bache-Wiig <jens.bache-wiig@nokia.com>2012-02-04 12:57:10 +0100
committerJens Bache-Wiig <jens.bache-wiig@nokia.com>2012-02-04 12:57:10 +0100
commit8924c12ee1f8194c65e492effe1b5105a842f081 (patch)
tree4a3c673cbbe67eafbd3dbbf186a40ef1962677d7
parent8ad6172a99e86f0ee25e61fec787c29f46258fbb (diff)
downloadqtquickcontrols-8924c12ee1f8194c65e492effe1b5105a842f081.tar.gz
Update combobox documentation to use "triggered" signal
-rw-r--r--components/ComboBox.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/ComboBox.qml b/components/ComboBox.qml
index 37ebb915..003b7853 100644
--- a/components/ComboBox.qml
+++ b/components/ComboBox.qml
@@ -40,12 +40,12 @@ import "custom" as Custom
* width: 200
* MenuItem {
* text: "Pineapple"
-* onSelected: console.debug(text)
+* onTriggered: console.debug(text)
*
* }
* MenuItem {
* text: "Grape"
-* onSelected: console.debug(text)
+* onTriggered: console.debug(text)
* }
* }
*