Add parameter variable names

This commit is contained in:
Jonas Kvinge
2024-09-24 20:40:35 +02:00
parent cf22b183a5
commit e52ea2a255
6 changed files with 15 additions and 11 deletions

View File

@@ -67,11 +67,13 @@ AnalyzerBase::~AnalyzerBase() {
delete fht_;
}
void AnalyzerBase::showEvent(QShowEvent*) {
void AnalyzerBase::showEvent(QShowEvent *e) {
Q_UNUSED(e)
timer_.start(timeout(), this);
}
void AnalyzerBase::hideEvent(QHideEvent*) {
void AnalyzerBase::hideEvent(QHideEvent *e) {
Q_UNUSED(e)
timer_.stop();
}