simple_dialog(Qt): fix extra ';' after member function definition

Found by clang with -Wextra-semi

Change-Id: I259f168759caab239c0e67526afbfa62c032b8b6
Reviewed-on: https://code.wireshark.org/review/33283
Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com>
Reviewed-by: Richard Sharpe <realrichardsharpe@gmail.com>
Tested-by: Petri Dish Buildbot
This commit is contained in:
Alexis La Goutte 2019-05-20 17:37:54 +00:00 committed by Peter Wu
parent cc50ec3634
commit 6cfc25c40e
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ struct VisibleAsyncMessage
QMessageBox *box;
int counter;
VisibleAsyncMessage(QMessageBox *box) : box(box), counter(0) {};
VisibleAsyncMessage(QMessageBox *box) : box(box), counter(0) {}
};
static QList<VisibleAsyncMessage> visible_messages;