diff options
author | Alexis Menard <alexis.menard@nokia.com> | 2010-01-08 14:33:06 (GMT) |
---|---|---|
committer | Alexis Menard <alexis.menard@nokia.com> | 2010-01-08 15:16:50 (GMT) |
commit | 319b0262418d74cc416a7dd1f620b54ba45bad22 (patch) | |
tree | e4c8b7af34eb0ee8b2970ec54bfe5aea8f861bbd /src/gui/util/qcompleter.h | |
parent | 2e62227f950aac8205f2b67e4d7d046836b2c799 (diff) | |
download | Qt-319b0262418d74cc416a7dd1f620b54ba45bad22.zip Qt-319b0262418d74cc416a7dd1f620b54ba45bad22.tar.gz Qt-319b0262418d74cc416a7dd1f620b54ba45bad22.tar.bz2 |
Obsolete QDirModel and remove it from the doc.
QFileSystemModel provides the same features as QDirModel but in a
efficient way so no need to keep QDirModel around.
This commit mark as obsolete QDirModel. Examples has been ported to
use QFileSystemModel instead. QCompleter also gain the support of
QFileSystemModel to complete nicely a line edit.
This commit also add a new signal in QFileSystemModel when the directory
is loaded, i.e. the thread has finished to read the current dir.
Task-number:QTBUG-3884
Reviewed-by:ogoffart
Reviewed-by:gabi
Reviewed-by:mbm
Diffstat (limited to 'src/gui/util/qcompleter.h')
-rw-r--r-- | src/gui/util/qcompleter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/util/qcompleter.h b/src/gui/util/qcompleter.h index c6ec75d..16cdac0 100644 --- a/src/gui/util/qcompleter.h +++ b/src/gui/util/qcompleter.h @@ -159,6 +159,7 @@ private: Q_PRIVATE_SLOT(d_func(), void _q_complete(QModelIndex)) Q_PRIVATE_SLOT(d_func(), void _q_completionSelected(const QItemSelection&)) Q_PRIVATE_SLOT(d_func(), void _q_autoResizePopup()) + Q_PRIVATE_SLOT(d_func(), void _q_fileSystemModelDirectoryLoaded(const QString&)) }; #endif // QT_NO_COMPLETER |