Skip to content

Commit

Permalink
MainWindow: fix warning of unused 'event' in on_about()
Browse files Browse the repository at this point in the history
  • Loading branch information
Lihis committed Aug 9, 2020
1 parent 39f417c commit 0aafa46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ void MainWindow::server_changed() {
m_sender->serverChanged();
}

void MainWindow::on_about(wxCommandEvent &event) {
void MainWindow::on_about(wxCommandEvent &/*event*/) {
AboutDialog dialog(this);
dialog.ShowModal();
}
Expand Down

0 comments on commit 0aafa46

Please sign in to comment.