aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/dialogs/DefaultFileDialog.qml
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@digia.com>2013-07-22 17:25:01 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-07-23 08:36:26 +0200
commitcf62652614676f58f9c45102a67a497c81805a36 (patch)
treebabef8e5c5049e0a71e88b7eab2928e46736f650 /src/imports/dialogs/DefaultFileDialog.qml
parent0181dc283f6a783783b7e622b4e2dc241edd8a54 (diff)
FolderListModel provides file URLs and the QML FileDialog uses them
This saves a conversion step in the FileDialog and rounds out the FolderListModel API. Task-number: QTBUG-32039 Change-Id: I63bc54cb91673aafba08d0d9f132073c129f0c18 Reviewed-by: Alan Alpert <aalpert@blackberry.com>
Diffstat (limited to 'src/imports/dialogs/DefaultFileDialog.qml')
-rw-r--r--src/imports/dialogs/DefaultFileDialog.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/imports/dialogs/DefaultFileDialog.qml b/src/imports/dialogs/DefaultFileDialog.qml
index 2cdb34cc03..fb6996b80c 100644
--- a/src/imports/dialogs/DefaultFileDialog.qml
+++ b/src/imports/dialogs/DefaultFileDialog.qml
@@ -107,11 +107,10 @@ AbstractFileDialog {
selectedIndices.map(function(idx) {
if (view.model.isFolder(idx)) {
if (selectFolder)
- // TODO after QTBUG-32039: should not need to convert pathToUrl here
- addSelection(pathToUrl(view.model.get(idx, "filePath")))
+ addSelection(view.model.get(idx, "fileURL"))
} else {
if (!selectFolder)
- addSelection(pathToUrl(view.model.get(idx, "filePath")))
+ addSelection(view.model.get(idx, "fileURL"))
}
})
}