diff options
author | Gabriel de Dietrich <[email protected]> | 2015-06-26 17:55:20 +0200 |
---|---|---|
committer | Gabriel de Dietrich <[email protected]> | 2015-06-29 12:08:00 +0000 |
commit | d48cd2c203a14b0e61255f0efb28d990f1847911 (patch) | |
tree | c742a2a2800cea695df338797d4b43ad657d15c6 /examples | |
parent | 37ca0946401db7f057b7cfd310d09a4e4e031a17 (diff) |
filesystembrowser: Remove debugging output
Change-Id: I0722f4a7970623544124a5b1b75abb5b1221d637
Reviewed-by: J-P Nurmi <[email protected]>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/quick/controls/filesystembrowser/main.qml | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/examples/quick/controls/filesystembrowser/main.qml b/examples/quick/controls/filesystembrowser/main.qml index 4b182b733..454a9f31d 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) } } |