mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-02 20:05:37 -04:00
Initializing bools in settings.h
This commit is contained in:
parent
03d1fe434c
commit
0f2320bd47
1 changed files with 8 additions and 7 deletions
|
@ -172,14 +172,15 @@ private:
|
|||
|
||||
QString m_brandingComponentName;
|
||||
|
||||
// bools are initialized here according to default setting
|
||||
bool m_debug;
|
||||
bool m_doChroot;
|
||||
bool m_isSetupMode;
|
||||
bool m_promptInstall;
|
||||
bool m_disableCancel;
|
||||
bool m_disableCancelDuringExec;
|
||||
bool m_hideBackAndNextDuringExec;
|
||||
bool m_quitAtEnd;
|
||||
bool m_doChroot = true;
|
||||
bool m_isSetupMode = false;
|
||||
bool m_promptInstall = false;
|
||||
bool m_disableCancel = false;
|
||||
bool m_disableCancelDuringExec = false;
|
||||
bool m_hideBackAndNextDuringExec=false;
|
||||
bool m_quitAtEnd = false;
|
||||
};
|
||||
|
||||
} // namespace Calamares
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue