NOISSUE fix some warnings

This commit is contained in:
Petr Mrázek
2018-02-11 01:21:32 +01:00
parent f259e9f727
commit 604295e6d5
4 changed files with 15 additions and 8 deletions

View File

@ -354,7 +354,8 @@ void VersionPage::on_downloadBtn_clicked()
}
ProgressDialog tDialog(this);
connect(updateTask.get(), SIGNAL(failed(QString)), SLOT(onGameUpdateError(QString)));
int ret = tDialog.execWithTask(updateTask.get());
// FIXME: unused return value
tDialog.execWithTask(updateTask.get());
updateButtons();
m_container->refreshContainer();
}