summaryrefslogtreecommitdiff
path: root/src/dialogs/qquickfiledialog_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dialogs/qquickfiledialog_p.h')
-rw-r--r--src/dialogs/qquickfiledialog_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dialogs/qquickfiledialog_p.h b/src/dialogs/qquickfiledialog_p.h
index 5614e939..ae608d75 100644
--- a/src/dialogs/qquickfiledialog_p.h
+++ b/src/dialogs/qquickfiledialog_p.h
@@ -64,14 +64,14 @@ class QQuickFileDialog : public QQuickAbstractFileDialog
public:
explicit QQuickFileDialog(QObject *parent = 0);
~QQuickFileDialog();
- virtual QList<QUrl> fileUrls() const Q_DECL_OVERRIDE;
+ QList<QUrl> fileUrls() const override;
public Q_SLOTS:
void clearSelection();
bool addSelection(const QUrl &path);
protected:
- virtual QPlatformFileDialogHelper *helper() Q_DECL_OVERRIDE { return 0; }
+ QPlatformFileDialogHelper *helper() override { return 0; }
Q_INVOKABLE QString urlToPath(const QUrl &url) { return url.toLocalFile(); }
Q_INVOKABLE QUrl pathToUrl(const QString &path) { return QUrl::fromLocalFile(path); }
Q_INVOKABLE QUrl pathFolder(const QString &path);