Avoid "unused parameter" warning

This commit is contained in:
mgrojo
2021-07-18 17:01:18 +02:00
parent 8d0d6e3213
commit fd02005913

View File

@@ -11,7 +11,7 @@ AboutDialog::AboutDialog(QWidget *parent) :
ui->label_version->setText(Application::versionInformation());
}
void AboutDialog::showEvent(QShowEvent *e)
void AboutDialog::showEvent(QShowEvent *)
{
this->adjustSize();
this->setFixedSize(this->width(), this->height());