diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-19 16:23:30 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-19 16:23:30 -0600 |
commit | fb69772f29f8376fde3f35fa4cc26fefe2996c3c (patch) | |
tree | bbcf6c681e5ba1e60bae26e74a6d05a5494c1b93 /ui/qt5 | |
parent | ced941f5f08e231e4c7a8ecde88441e70128ada5 (diff) | |
download | horizon-fb69772f29f8376fde3f35fa4cc26fefe2996c3c.tar.gz horizon-fb69772f29f8376fde3f35fa4cc26fefe2996c3c.tar.bz2 horizon-fb69772f29f8376fde3f35fa4cc26fefe2996c3c.tar.xz horizon-fb69772f29f8376fde3f35fa4cc26fefe2996c3c.zip |
Qt UI: Add page definition for shell/init/MTA selection
Diffstat (limited to 'ui/qt5')
-rw-r--r-- | ui/qt5/horizonwizard.cc | 1 | ||||
-rw-r--r-- | ui/qt5/horizonwizard.hh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc index ba4b487..b3e6c51 100644 --- a/ui/qt5/horizonwizard.cc +++ b/ui/qt5/horizonwizard.cc @@ -62,6 +62,7 @@ static std::map<int, std::string> help_id_map = { {HorizonWizard::Page_Hostname, "hostname"}, {HorizonWizard::Page_PkgSimple, "packages-simple"}, {HorizonWizard::Page_PkgCustom, "packages-custom"}, + {HorizonWizard::Page_PkgCustomDefault, "packages-custom-default"}, {HorizonWizard::Page_Boot, "startup"}, {HorizonWizard::Page_Root, "rootpw"}, {HorizonWizard::Page_Accounts, "accounts"}, diff --git a/ui/qt5/horizonwizard.hh b/ui/qt5/horizonwizard.hh index 3986f46..f009426 100644 --- a/ui/qt5/horizonwizard.hh +++ b/ui/qt5/horizonwizard.hh @@ -54,6 +54,7 @@ public: Page_Hostname, /* hostname */ Page_PkgSimple, /* simple package selection */ Page_PkgCustom, /* custom package selection */ + Page_PkgCustomDefault, /* custom package defaults selection */ Page_Boot, /* boot loader configuration */ Page_Root, /* root passphrase */ Page_Accounts, /* user account configuration */ |