From 700e6f0ec69cffe86a89a41d0c963d904278e61b Mon Sep 17 00:00:00 2001 From: The feren OS Dev Date: Tue, 16 Apr 2019 17:17:39 +0100 Subject: [PATCH] Update Settings.h --- src/libcalamares/Settings.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libcalamares/Settings.h b/src/libcalamares/Settings.h index 0c0f0aa91..648017430 100644 --- a/src/libcalamares/Settings.h +++ b/src/libcalamares/Settings.h @@ -1,5 +1,7 @@ /* === This file is part of Calamares - === * + * Copyright 2019, Dominic Hayes + * Copyright 2019, abucodonosor * Copyright 2014-2015, Teo Mrnjavac * Copyright 2017-2018, Adriaan de Groot * @@ -68,6 +70,8 @@ public: bool isSetupMode() const { return m_isSetupMode; } bool disableCancel() const; + + bool dontCancel() const; private: static Settings* s_instance; @@ -84,6 +88,7 @@ private: bool m_isSetupMode; bool m_promptInstall; bool m_disableCancel; + bool m_dontCancel; }; }