mirror of
https://github.com/86Box/86Box.git
synced 2026-03-01 02:14:21 -07:00
clang-format in src/qt
This commit is contained in:
@@ -24,11 +24,14 @@ extern "C" {
|
||||
}
|
||||
|
||||
UpdateCheckDialog::
|
||||
UpdateCheckDialog(const UpdateCheck::UpdateChannel channel, QWidget *parent) : QDialog(parent), ui(new Ui::UpdateCheckDialog), updateCheck(new UpdateCheck(channel))
|
||||
UpdateCheckDialog(const UpdateCheck::UpdateChannel channel, QWidget *parent)
|
||||
: QDialog(parent)
|
||||
, ui(new Ui::UpdateCheckDialog)
|
||||
, updateCheck(new UpdateCheck(channel))
|
||||
{
|
||||
ui->setupUi(this);
|
||||
ui->statusLabel->setHidden(true);
|
||||
updateChannel = channel;
|
||||
updateChannel = channel;
|
||||
currentVersion = UpdateCheck::getCurrentVersion(updateChannel);
|
||||
connect(updateCheck, &UpdateCheck::updateCheckError, [=](const QString &errorMsg) {
|
||||
generalDownloadError(errorMsg);
|
||||
@@ -40,8 +43,7 @@ UpdateCheckDialog(const UpdateCheck::UpdateChannel channel, QWidget *parent) : Q
|
||||
});
|
||||
}
|
||||
|
||||
UpdateCheckDialog::~
|
||||
UpdateCheckDialog()
|
||||
UpdateCheckDialog::~UpdateCheckDialog()
|
||||
= default;
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user