summaryrefslogtreecommitdiff
path: root/ui/qt/capture_file_dialog.cpp
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-11-21 01:28:17 +0000
committerGerald Combs <gerald@wireshark.org>2013-11-21 01:28:17 +0000
commitea28298e961bca09a4294a4130463ea54123fa14 (patch)
tree2a049a21dfac639bb965dbeaa0f4dc5ff2f61f5e /ui/qt/capture_file_dialog.cpp
parent3111b6c88968bec609dfc04912f6cfaf65a6927a (diff)
downloadwireshark-ea28298e961bca09a4294a4130463ea54123fa14.tar.gz
Add a statistics tree dialog.
Add menu items for each corresponding item in gtk/main_menubar.c that calls gtk_stats_tree_cb(). Hopefully that's everything. Note that we use quite a bit less code than the GTK+ flavor and why we might not want to do that. Change a few things in ui/qt/CMakeLists.txt to more closely match the GTK+ version. Add plumbing for tap registrations in CMakeLists.txt and Makefile.am. Add the ability to copy text as CSV or YAML. svn path=/trunk/; revision=53464
Diffstat (limited to 'ui/qt/capture_file_dialog.cpp')
-rw-r--r--ui/qt/capture_file_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/capture_file_dialog.cpp b/ui/qt/capture_file_dialog.cpp
index 850b81d06c..68cd033e1d 100644
--- a/ui/qt/capture_file_dialog.cpp
+++ b/ui/qt/capture_file_dialog.cpp
@@ -493,7 +493,7 @@ void CaptureFileDialog::addDisplayFilterEdit() {
fd_grid->addWidget(new QLabel(tr("Display Filter:")), last_row_, 0);
- display_filter_edit_ = new DisplayFilterEdit(this, true);
+ display_filter_edit_ = new DisplayFilterEdit(this);
display_filter_edit_->setText(display_filter_);
fd_grid->addWidget(display_filter_edit_, last_row_, 1);
last_row_++;