diff options
author | Daniel Teske <[email protected]> | 2014-07-31 18:15:19 +0200 |
---|---|---|
committer | Daniel Teske <[email protected]> | 2014-08-11 14:49:52 +0200 |
commit | 0d5763425a1e08c191c790d0bf0a44566f40a9c7 (patch) | |
tree | 84cc04447359e008fef45be48d3fd3e9628434b0 /src/plugins/debugger/debuggerplugin.cpp | |
parent | fd18503ef205dbc25df3aadcfa4e330a49d7922e (diff) |
TreeViewFind -> ItemViewFind
The code changes to enable this is minimal.
Change-Id: Ia5571adcc724e89eb5c68a5f91e38b9cf274516d
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 99f46413a4d..dd1a8609589 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -74,7 +74,7 @@ #include <coreplugin/actionmanager/actionmanager.h> #include <coreplugin/actionmanager/actioncontainer.h> -#include <coreplugin/find/treeviewfind.h> +#include <coreplugin/find/itemviewfind.h> #include <coreplugin/imode.h> #include <coreplugin/coreconstants.h> #include <coreplugin/icore.h> @@ -538,7 +538,7 @@ static QWidget *addSearch(BaseTreeView *treeView, const QString &title, QObject::connect(act, SIGNAL(toggled(bool)), treeView, SLOT(setAlternatingRowColorsHelper(bool))); - QWidget *widget = TreeViewFind::createSearchableWrapper(treeView); + QWidget *widget = ItemViewFind::createSearchableWrapper(treeView); widget->setObjectName(QLatin1String(objectName)); widget->setWindowTitle(title); return widget; |