aboutsummaryrefslogtreecommitdiffstats
path: root/ui
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:54:27 +0000
commit05121be1b4ea35257bfcd8ed38d2312b1519f370 (patch)
treee3aef7717994f19c2b3df64ba1b5c8b4b0482c77 /ui
parent75da6960e0c6a933e4459249113716c4137cd386 (diff)
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>
Diffstat (limited to 'ui')
-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()),