summaryrefslogtreecommitdiff
path: root/ui/qt
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2017-04-26 08:27:10 +0200
committerStig Bjørlykke <stig@bjorlykke.org>2017-04-26 06:27:37 +0000
commit81bad32f2ce6cfe05863b89a81752d449bd2d635 (patch)
treee157ff87a2fa6f096274a4bb8852a0cdadc8857c /ui/qt
parent30d98d1ea9cdec7cfa04f960337e9c0dbaf4c574 (diff)
downloadwireshark-81bad32f2ce6cfe05863b89a81752d449bd2d635.tar.gz
Qt: Remove semicolon behind Q_UNUSED macro, part 2
Change-Id: Id27a93c9a76b554bb2e98199d08d3d9604550889 Reviewed-on: https://code.wireshark.org/review/21348 Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'ui/qt')
-rw-r--r--ui/qt/main_window_slots.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/qt/main_window_slots.cpp b/ui/qt/main_window_slots.cpp
index 8667e050d1..c957a6e42a 100644
--- a/ui/qt/main_window_slots.cpp
+++ b/ui/qt/main_window_slots.cpp
@@ -662,7 +662,7 @@ void MainWindow::captureCapturePrepared(capture_session *session) {
// main_set_for_capture_file(FALSE);
main_ui_->mainStack->setCurrentWidget(&master_split_);
#else
- Q_UNUSED(session);
+ Q_UNUSED(session)
#endif // HAVE_LIBPCAP
}
@@ -677,7 +677,7 @@ void MainWindow::captureCaptureUpdateStarted(capture_session *session) {
setForCapturedPackets(true);
#else
- Q_UNUSED(session);
+ Q_UNUSED(session)
#endif // HAVE_LIBPCAP
}
void MainWindow::captureCaptureUpdateFinished(capture_session *) {