summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel de Dietrich <gabriel.dedietrich@theqtcompany.com>2015-06-26 17:55:20 +0200
committerGabriel de Dietrich <gabriel.dedietrich@theqtcompany.com>2015-06-29 12:08:00 +0000
commitd48cd2c203a14b0e61255f0efb28d990f1847911 (patch)
treec742a2a2800cea695df338797d4b43ad657d15c6
parent37ca0946401db7f057b7cfd310d09a4e4e031a17 (diff)
downloadqtquickcontrols-d48cd2c203a14b0e61255f0efb28d990f1847911.tar.gz
filesystembrowser: Remove debugging output
Change-Id: I0722f4a7970623544124a5b1b75abb5b1221d637 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
-rw-r--r--examples/quick/controls/filesystembrowser/main.qml9
1 files changed, 0 insertions, 9 deletions
diff --git a/examples/quick/controls/filesystembrowser/main.qml b/examples/quick/controls/filesystembrowser/main.qml
index 4b182b73..454a9f31 100644
--- a/examples/quick/controls/filesystembrowser/main.qml
+++ b/examples/quick/controls/filesystembrowser/main.qml
@@ -83,12 +83,6 @@ ApplicationWindow {
ItemSelectionModel {
id: sel
model: fileSystemModel
- onSelectionChanged: {
- console.log("selected", selected)
- console.log("deselected", deselected)
- console.log("selection", sel.selection())
- }
- onCurrentChanged: console.log("current", current)
}
TreeView {
@@ -98,8 +92,6 @@ ApplicationWindow {
model: fileSystemModel
selection: sel
- onCurrentIndexChanged: console.log("current index", currentIndex)
-
TableViewColumn {
title: "Name"
role: "fileName"
@@ -112,7 +104,6 @@ ApplicationWindow {
resizable: true
}
- onClicked: console.log("clicked", index)
onDoubleClicked: isExpanded(index) ? collapse(index) : expand(index)
}
}