aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/widgets
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@digia.com>2013-06-26 15:38:11 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-06-27 13:06:39 +0200
commit74438ef7c14f19cecda0910a122eb8887dab649d (patch)
tree2603a475d1d2cfc89b23fed32f0b05b9277d75d6 /src/imports/widgets
parenta8e904c69a907742a5cc55c524c5432c7a35cba4 (diff)
QtQuick.Dialogs: sync the docs with the implementation
We've been using URLs instead of strings for some time now, just forgot to change the docs until now. Task-number: QTBUG-31847 Change-Id: I49a42282aeefb95e4d367397e2f290f4af65687e Reviewed-by: Jerome Pasion <jerome.pasion@digia.com> Reviewed-by: Venugopal Shivashankar <venugopal.shivashankar@digia.com>
Diffstat (limited to 'src/imports/widgets')
-rw-r--r--src/imports/widgets/qquickqfiledialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/imports/widgets/qquickqfiledialog.cpp b/src/imports/widgets/qquickqfiledialog.cpp
index afb150b509..498e34a24c 100644
--- a/src/imports/widgets/qquickqfiledialog.cpp
+++ b/src/imports/widgets/qquickqfiledialog.cpp
@@ -135,14 +135,14 @@ private:
\qmlsignal QtQuick::Dialogs::FileDialog::accepted
The \a accepted signal is emitted when the user has finished using the
- dialog. You can then inspect the \a filePath or \a filePaths properties to
+ dialog. You can then inspect the \a fileUrl or \a fileUrls properties to
get the selection.
Example:
\qml
FileDialog {
- onAccepted: { console.log("Selected file: " + filePath) }
+ onAccepted: { console.log("Selected file: " + fileUrl) }
}
\endqml
*/