mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-05 04:46:57 +03:00
Renew the updater branch
Now with some actual consensus on what the updater will do!
This commit is contained in:
parent
613699b362
commit
6aa9bd0f77
118 changed files with 44913 additions and 45 deletions
25
mmc_updater/src/UpdateDialog.cpp
Normal file
25
mmc_updater/src/UpdateDialog.cpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#include "UpdateDialog.h"
|
||||
|
||||
UpdateDialog::UpdateDialog()
|
||||
: m_autoClose(false)
|
||||
{
|
||||
}
|
||||
|
||||
void UpdateDialog::setAutoClose(bool autoClose)
|
||||
{
|
||||
m_autoClose = autoClose;
|
||||
}
|
||||
|
||||
bool UpdateDialog::autoClose() const
|
||||
{
|
||||
return m_autoClose;
|
||||
}
|
||||
|
||||
void UpdateDialog::updateFinished()
|
||||
{
|
||||
if (m_autoClose)
|
||||
{
|
||||
quit();
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue