summaryrefslogtreecommitdiff
path: root/src/widgets/qquickqfiledialog_p.h
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@theqtcompany.com>2015-03-03 14:06:39 +0100
committerRichard Moe Gustavsen <richard.gustavsen@theqtcompany.com>2015-03-18 09:20:40 +0000
commitbb95b8e3eb464d26ab3e78b49c8276277c929470 (patch)
treead9f5343e35089a2ad7fdb7e4f693a41958ccbb7 /src/widgets/qquickqfiledialog_p.h
parentcbd066616b0b24fb8003323b467a3269b7edb602 (diff)
downloadqtquickcontrols-bb95b8e3eb464d26ab3e78b49c8276277c929470.tar.gz
Dialogs: override selectedUrls in QQPlatformfiledialog
Rather than checking if a dialog helper is in use in QAbstractFileDialog, we override selectedUrls in QQuickPlatformFileDialog. Otherwise the version in QQuickFileDialog will be called first, which tries to return selectedUrls from the QML version (which might not be in use). Change-Id: If61647078ed2dd535384dcea67767bfc729edfe0 Reviewed-by: Shawn Rutledge <shawn.rutledge@digia.com>
Diffstat (limited to 'src/widgets/qquickqfiledialog_p.h')
-rw-r--r--src/widgets/qquickqfiledialog_p.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/widgets/qquickqfiledialog_p.h b/src/widgets/qquickqfiledialog_p.h
index d6214285..2747749e 100644
--- a/src/widgets/qquickqfiledialog_p.h
+++ b/src/widgets/qquickqfiledialog_p.h
@@ -61,6 +61,8 @@ public:
QQuickQFileDialog(QObject *parent = 0);
virtual ~QQuickQFileDialog();
+ virtual QList<QUrl> fileUrls() const Q_DECL_OVERRIDE;
+
protected:
QPlatformFileDialogHelper *helper();