aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/taskwindow.cpp
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2019-11-18 13:56:59 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2019-12-02 13:14:30 +0000
commitaacfd340ca1f8faebb3fc9e172fbbf625cda1f83 (patch)
tree507132a207fdcb1c7ab20174b43be4994746d9a5 /src/plugins/projectexplorer/taskwindow.cpp
parent9298bf8ff8683a5e9576b33ed6e8c14b2286b828 (diff)
Output panes: Allow to invert the meaning of the filter field
That is, show only the non-matching lines. Task-number: QTCREATORBUG-19596 Change-Id: Iac06a7c4531688dbf97c7d5c4d0cdb80979b5f95 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/taskwindow.cpp')
-rw-r--r--src/plugins/projectexplorer/taskwindow.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/taskwindow.cpp b/src/plugins/projectexplorer/taskwindow.cpp
index 77fe6455ed..d7f0c92c84 100644
--- a/src/plugins/projectexplorer/taskwindow.cpp
+++ b/src/plugins/projectexplorer/taskwindow.cpp
@@ -678,7 +678,8 @@ void TaskWindow::goToPrev()
void TaskWindow::updateFilter()
{
- d->m_filter->updateFilterProperties(filterText(), filterCaseSensitivity(), filterUsesRegexp());
+ d->m_filter->updateFilterProperties(filterText(), filterCaseSensitivity(), filterUsesRegexp(),
+ filterIsInverted());
}
bool TaskWindow::canNavigate() const