aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-04-22 18:43:44 -0700
committerGuy Harris <guy@alum.mit.edu>2016-04-23 01:44:34 +0000
commit76ae74cea34c47e25e4e387ee3990ba7c1231e6e (patch)
treef6d2766db20b20ca5725c98f6e92b734cd274e80
parent948342a487999fcf24913c4a76983c3c6d4df1d9 (diff)
Get rid of unnecessary method override.
The conversation dialog doesn't do anything different with the name resolution checkbox than any other subclasses of the traffic table dialog do, so leave it up to the parent class. Change-Id: I07f6c09b931ed10655f5921c0a4ab5d439dd6bcd Reviewed-on: https://code.wireshark.org/review/15065 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--ui/qt/conversation_dialog.cpp5
-rw-r--r--ui/qt/conversation_dialog.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/ui/qt/conversation_dialog.cpp b/ui/qt/conversation_dialog.cpp
index 8b79c58824..5214417f97 100644
--- a/ui/qt/conversation_dialog.cpp
+++ b/ui/qt/conversation_dialog.cpp
@@ -275,11 +275,6 @@ void ConversationDialog::itemSelectionChanged()
graph_bt_->setEnabled(graph_enable);
}
-void ConversationDialog::on_nameResolutionCheckBox_toggled(bool)
-{
- updateWidgets();
-}
-
void ConversationDialog::on_displayFilterCheckBox_toggled(bool checked)
{
if (file_closed_) {
diff --git a/ui/qt/conversation_dialog.h b/ui/qt/conversation_dialog.h
index ff29db1e73..38d57d14af 100644
--- a/ui/qt/conversation_dialog.h
+++ b/ui/qt/conversation_dialog.h
@@ -76,7 +76,6 @@ private:
private slots:
void itemSelectionChanged();
- void on_nameResolutionCheckBox_toggled(bool checked);
void on_displayFilterCheckBox_toggled(bool checked);
void followStream();
void graphTcp();