summaryrefslogtreecommitdiff
path: root/ui/qt/wireshark_application.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/wireshark_application.h')
-rw-r--r--ui/qt/wireshark_application.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/ui/qt/wireshark_application.h b/ui/qt/wireshark_application.h
index 6f26a90f99..9decb77f28 100644
--- a/ui/qt/wireshark_application.h
+++ b/ui/qt/wireshark_application.h
@@ -190,11 +190,14 @@ signals:
void openStatCommandDialog(const QString &menu_path, const char *arg, void *userdata);
void openTapParameterDialog(const QString cfg_str, const QString arg, void *userdata);
+ /* Signals activation and stop of a capture. The value provides the number of active captures */
+ void captureActive(int);
+
public slots:
void clearRecentCaptures();
void captureFileReadStarted();
- void captureStarted() { active_captures_++; }
- void captureFinished() { active_captures_--; }
+ void captureStarted();
+ void captureFinished();
void updateTaps();
private slots: