RTP streams dialog: Fix find reverse button

Fix find reverse button

Bug: 13462
Change-Id: I6e19fa38cd333285c9ca3cf01e4c06ff8de56b2a
Reviewed-on: https://code.wireshark.org/review/20462
Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org>
Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org>
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
This commit is contained in:
Erik de Jong 2017-03-09 14:33:29 +01:00 committed by Peter Wu
parent abcaf3e370
commit e003908423
1 changed files with 3 additions and 1 deletions

View File

@ -640,7 +640,9 @@ void RtpStreamDialog::on_streamTreeWidget_itemSelectionChanged()
void RtpStreamDialog::on_buttonBox_clicked(QAbstractButton *button)
{
if (button == prepare_button_) {
if (button == find_reverse_button_) {
on_actionFindReverse_triggered();
} else if (button == prepare_button_) {
on_actionPrepareFilter_triggered();
} else if (button == export_button_) {
on_actionExportAsRtpDump_triggered();