f53df7da64
Code submissions have continually suffered from formatting inconsistencies that constantly have to be addressed. Using clang-format simplifies this by making code formatting more consistent, and allows automation of the code formatting so that maintainers can focus more on the code itself instead of code formatting.
44 lines
698 B
C++
44 lines
698 B
C++
#include "update-window.hpp"
|
|
#include "obs-app.hpp"
|
|
|
|
OBSUpdate::OBSUpdate(QWidget *parent, bool manualUpdate, const QString &text)
|
|
: QDialog(parent, Qt::WindowSystemMenuHint | Qt::WindowTitleHint |
|
|
Qt::WindowCloseButtonHint),
|
|
ui(new Ui_OBSUpdate)
|
|
{
|
|
ui->setupUi(this);
|
|
ui->text->setHtml(text);
|
|
|
|
if (manualUpdate) {
|
|
delete ui->skip;
|
|
ui->skip = nullptr;
|
|
|
|
ui->no->setText(QTStr("Cancel"));
|
|
}
|
|
}
|
|
|
|
void OBSUpdate::on_yes_clicked()
|
|
{
|
|
done(OBSUpdate::Yes);
|
|
}
|
|
|
|
void OBSUpdate::on_no_clicked()
|
|
{
|
|
done(OBSUpdate::No);
|
|
}
|
|
|
|
void OBSUpdate::on_skip_clicked()
|
|
{
|
|
done(OBSUpdate::Skip);
|
|
}
|
|
|
|
void OBSUpdate::accept()
|
|
{
|
|
done(OBSUpdate::Yes);
|
|
}
|
|
|
|
void OBSUpdate::reject()
|
|
{
|
|
done(OBSUpdate::No);
|
|
}
|