diff options
author | Alexis Menard <alexis.menard@nokia.com> | 2009-08-05 11:19:29 (GMT) |
---|---|---|
committer | Alexis Menard <alexis.menard@nokia.com> | 2009-08-05 11:25:03 (GMT) |
commit | 90480b9a25568858d1383e0aab6f5708a7dabd4f (patch) | |
tree | efeef36bee065dad42df9d0486431058e9816b65 /src/gui/dialogs/qfiledialog.cpp | |
parent | cb599c5ea32e8e5ff81318038b432272f107b1fe (diff) | |
download | Qt-90480b9a25568858d1383e0aab6f5708a7dabd4f.zip Qt-90480b9a25568858d1383e0aab6f5708a7dabd4f.tar.gz Qt-90480b9a25568858d1383e0aab6f5708a7dabd4f.tar.bz2 |
Fix a bug when activating HideNameFilterDetails on Windows filedialog.
The HideNameFilterDetails was not taken in account for windows
file dialog. This patch fix that. For Windows Vista and later we use
now the new COMMON_ITEM_DIALOG API (in master) where it add always
the filter extension like *.txt so no point to take that flag in account.
Task-number: None, during testing
Reviewed-by: prasanth
Diffstat (limited to 'src/gui/dialogs/qfiledialog.cpp')
-rw-r--r-- | src/gui/dialogs/qfiledialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/dialogs/qfiledialog.cpp b/src/gui/dialogs/qfiledialog.cpp index c8ce162..6977731 100644 --- a/src/gui/dialogs/qfiledialog.cpp +++ b/src/gui/dialogs/qfiledialog.cpp @@ -219,7 +219,7 @@ Q_GUI_EXPORT _qt_filedialog_save_filename_hook qt_filedialog_save_filename_hook 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. - \value HideNameFilterDetails Indicates if the is hidden or not. + \value HideNameFilterDetails Indicates if the filter extension (e.g. *.bmp) is hidden or not. This value is obsolete and does nothing since Qt 4.5: |