summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlexis Menard <alexis.menard@nokia.com>2009-04-28 17:11:51 (GMT)
committerAlexis Menard <alexis.menard@nokia.com>2009-04-28 17:11:51 (GMT)
commitcde40ce4a211816bf4222fa5487139c416f7b165 (patch)
treea3fb71fae1885e7ad7295e61bd06dbd6d699a0d2 /src
parent2f2811f24268d9f34e2725e1aca4212a6ffdd81f (diff)
downloadQt-cde40ce4a211816bf4222fa5487139c416f7b165.zip
Qt-cde40ce4a211816bf4222fa5487139c416f7b165.tar.gz
Qt-cde40ce4a211816bf4222fa5487139c416f7b165.tar.bz2
Fix documentation about native dialogs
It basically says that on KDE and GNOME the native dialogs are called. It fix a mistake about a regular instantiation on QFileDialog object on Windows.
Diffstat (limited to 'src')
-rw-r--r--src/gui/dialogs/qfiledialog.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/dialogs/qfiledialog.cpp b/src/gui/dialogs/qfiledialog.cpp
index abb13c0..2f524cb 100644
--- a/src/gui/dialogs/qfiledialog.cpp
+++ b/src/gui/dialogs/qfiledialog.cpp
@@ -96,9 +96,8 @@ Q_GUI_EXPORT _qt_filedialog_save_filename_hook qt_filedialog_save_filename_hook
order to select one or many files or a directory.
The easiest way to create a QFileDialog is to use the static
- functions. On Windows, these static functions will call the native
- Windows file dialog, and on Mac OS X these static function will call
- the native Mac OS X file dialog.
+ functions. On Windows, Mac OS X, KDE and GNOME, these static functions will
+ call the native file dialog when possible.
\snippet doc/src/snippets/code/src_gui_dialogs_qfiledialog.cpp 0
@@ -216,7 +215,7 @@ Q_GUI_EXPORT _qt_filedialog_save_filename_hook qt_filedialog_save_filename_hook
are resolved.
\value DontConfirmOverwrite Don't ask for confirmation if an existing file is selected.
By default confirmation is requested.
- \value DontUseNativeDialog Don't use the native file dialog. By default on Mac OS X and Windows,
+ \value DontUseNativeDialog Don't use the native file dialog. By default on Mac OS X,
the native file dialog is used unless you use a subclass of QFileDialog that contains the
Q_OBJECT macro.
\value ReadOnly Indicates that the model is readonly.