aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Novak <j.novak@netsystem.cz>2016-12-18 21:08:16 +0100
committerAnders Broman <a.broman58@gmail.com>2016-12-19 07:44:10 +0000
commit0e6333cfb45d6caa33f72c208978f8f6684a3ff5 (patch)
treee40611eba699503b0a9f6c395ea97237e6eaa068
parent5f6732d74eb731f26d389f378567d2dfa532f24c (diff)
RTP analyzis dialog/Qt: fix - when dialog is called from RTP stream dialog, G (select packet) signal is not passed to parent dialog
Problem is in 2.0 and master. It is probably in 2.2 too. Change-Id: Iaa8adea788dcd5da7cff32d56d483a1e7d52d226 Reviewed-on: https://code.wireshark.org/review/19340 Petri-Dish: Anders Broman <a.broman58@gmail.com> Reviewed-by: Peter Wu <peter@lekensteyn.nl> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--ui/qt/rtp_stream_dialog.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/qt/rtp_stream_dialog.cpp b/ui/qt/rtp_stream_dialog.cpp
index f636936e9e..de1dffb919 100644
--- a/ui/qt/rtp_stream_dialog.cpp
+++ b/ui/qt/rtp_stream_dialog.cpp
@@ -469,6 +469,7 @@ void RtpStreamDialog::on_actionAnalyze_triggered()
if (stream_a == NULL && stream_b == NULL) return;
RtpAnalysisDialog rtp_analysis_dialog(*this, cap_file_, stream_a, stream_b);
+ connect(&rtp_analysis_dialog, SIGNAL(goToPacket(int)), this, SIGNAL(goToPacket(int)));
rtp_analysis_dialog.exec();
}