summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2015-11-27 18:10:52 +0100
committerAnders Broman <a.broman58@gmail.com>2015-11-28 07:55:28 +0000
commit18a08f434fce4bde56b3a8621dfc05c4dcf06df2 (patch)
tree8b415ec71d92a2277001c660e71d8205229d9bc5
parent8f96d5358ba0dd8cf8cd5d134440361f9478e032 (diff)
downloadwireshark-18a08f434fce4bde56b3a8621dfc05c4dcf06df2.tar.gz
Qt: reload after applying parameters in UDP multicast dialog
Noticed this message in stderr, started investigating: QObject::connect: No such signal MulticastStatisticsDialog::updateFilter(QString&,bool) in ui/qt/multicast_statistics_dialog.cpp:247 QObject::connect: (sender name: 'TapParameterDialog') QObject::connect: (receiver name: 'TapParameterDialog') Verified that after this patch, the "Max Burst" changes from "4/100ms" to "1/1ms" when modifying "Burst measurement interval (ms)" from 100 to 1 using rtp-norm-transfer.pcap from the SampleCaptures wiki. Change-Id: I803ff9e5a542a5fd3507b086f29628fbf5602784 Reviewed-on: https://code.wireshark.org/review/12228 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com> (cherry picked from commit 05121be1b4ea35257bfcd8ed38d2312b1519f370) Reviewed-on: https://code.wireshark.org/review/12243
-rw-r--r--ui/qt/multicast_statistics_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/multicast_statistics_dialog.cpp b/ui/qt/multicast_statistics_dialog.cpp
index 3246dc5871..d36c57c108 100644
--- a/ui/qt/multicast_statistics_dialog.cpp
+++ b/ui/qt/multicast_statistics_dialog.cpp
@@ -244,7 +244,7 @@ MulticastStatisticsDialog::MulticastStatisticsDialog(QWidget &parent, CaptureFil
setDisplayFilter(filter);
}
- connect(this, SIGNAL(updateFilter(QString&,bool)),
+ connect(this, SIGNAL(updateFilter(QString)),
this, SLOT(updateMulticastParameters()));
connect(&cap_file_, SIGNAL(captureFileClosing()),