summaryrefslogtreecommitdiff
path: root/src/plugins/cpptools/symbolsfindfilter.cpp
diff options
context:
space:
mode:
authorDaniel Teske <daniel.teske@nokia.com>2012-09-13 15:50:06 +0200
committerDaniel Teske <daniel.teske@nokia.com>2012-09-13 17:37:02 +0200
commitff6e9333ad3b26f8efdf97e9081b4d67898b2bd9 (patch)
tree898feacc32989ec3f8294c3e7e89f1d99e33e511 /src/plugins/cpptools/symbolsfindfilter.cpp
parentaafac06a24724324caac40819fb2f15ee10d7310 (diff)
downloadqt-creator-ff6e9333ad3b26f8efdf97e9081b4d67898b2bd9.tar.gz
Make IOutputPane behaviour more granular
The commit looks big, but it's mostly trivial. Also any build/run related popups are now "flashes" if the current mode has no placeholder. Task-number: QTCREATORBUG-7875 Change-Id: I3af40557f7af01798f905c0d1829423c80058cb6 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/cpptools/symbolsfindfilter.cpp')
-rw-r--r--src/plugins/cpptools/symbolsfindfilter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpptools/symbolsfindfilter.cpp b/src/plugins/cpptools/symbolsfindfilter.cpp
index 0e447651de..70fa8786df 100644
--- a/src/plugins/cpptools/symbolsfindfilter.cpp
+++ b/src/plugins/cpptools/symbolsfindfilter.cpp
@@ -175,7 +175,7 @@ void SymbolsFindFilter::findAll(const QString &txt, Find::FindFlags findFlags)
connect(search, SIGNAL(paused(bool)), this, SLOT(setPaused(bool)));
connect(search, SIGNAL(searchAgainRequested()), this, SLOT(searchAgain()));
connect(this, SIGNAL(enabledChanged(bool)), search, SLOT(setSearchAgainEnabled(bool)));
- window->popup(true);
+ window->popup(Core::IOutputPane::ModeSwitch | Core::IOutputPane::WithFocus);
SymbolsFindParameters parameters;
parameters.text = txt;