aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/capture_interfaces_dialog.cpp
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2016-01-29 07:55:03 +0100
committerStig Bjørlykke <stig@bjorlykke.org>2016-01-29 08:24:36 +0000
commit6e53a0667832c9a67654f198ee5a1935c54b8b75 (patch)
tree9c1a71a4d2ee9252326bbfeaf1b10cec9aba30c8 /ui/qt/capture_interfaces_dialog.cpp
parent72a9a439338f07522571b69656df9a7066930d74 (diff)
Qt: No capture filter bookmarks in capture interfaces list
Change-Id: I4f53758c0fa4448656daac3ad186a6b0e687fc5c Reviewed-on: https://code.wireshark.org/review/13593 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'ui/qt/capture_interfaces_dialog.cpp')
-rw-r--r--ui/qt/capture_interfaces_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/capture_interfaces_dialog.cpp b/ui/qt/capture_interfaces_dialog.cpp
index d234f08b52..828b7e0dd8 100644
--- a/ui/qt/capture_interfaces_dialog.cpp
+++ b/ui/qt/capture_interfaces_dialog.cpp
@@ -1048,7 +1048,7 @@ QWidget* InterfaceTreeDelegate::createEditor(QWidget *parent, const QStyleOption
#endif
case col_filter_:
{
- CaptureFilterCombo *cf = new CaptureFilterCombo(parent);
+ CaptureFilterCombo *cf = new CaptureFilterCombo(parent, true);
connect(cf->lineEdit(), SIGNAL(textEdited(QString)), this, SIGNAL(filterChanged(QString)));
w = (QWidget*) cf;
}