aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/voip_calls_dialog.cpp
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2016-11-23 16:28:34 +0100
committerGerald Combs <gerald@wireshark.org>2016-11-29 20:57:01 +0000
commit7fe45cc0ec4e8bc1c3d5cd27c98feb8ecbb2b1b4 (patch)
tree20063f16d6c60234457f4a710bf471e4869b9b66 /ui/qt/voip_calls_dialog.cpp
parentf96ef34b19dd074fd013b06667e6c368fa31150c (diff)
Qt: fix GoToPacket when Voip Calls dialog is closed
After opening the Call Flows dialog from the Voip Calls dialog, followed by closing the Voip Calls dialog, the Go To Packet functionality in the Call Flows dialog is broken. That happens because the signal is not proxied anymore. Just remove all these indirections via signals and directly update the selected packet. Change-Id: I9c6d519dbe800e4dfdf0407d832f17819b344e46 Reviewed-on: https://code.wireshark.org/review/18933 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/qt/voip_calls_dialog.cpp')
-rw-r--r--ui/qt/voip_calls_dialog.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/qt/voip_calls_dialog.cpp b/ui/qt/voip_calls_dialog.cpp
index 73282a02f4..e41014ec7f 100644
--- a/ui/qt/voip_calls_dialog.cpp
+++ b/ui/qt/voip_calls_dialog.cpp
@@ -556,9 +556,6 @@ void VoipCallsDialog::showSequence()
}
SequenceDialog *sequence_dialog = new SequenceDialog(parent_, cap_file_, sequence_info_);
- // XXX This goes away when we close the VoIP Calls dialog.
- connect(sequence_dialog, SIGNAL(goToPacket(int)),
- this, SIGNAL(goToPacket(int)));
sequence_dialog->show();
}