summaryrefslogtreecommitdiff
path: root/ui/qt5/horizonwizard.cc
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-20 22:41:59 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-27 11:19:04 -0600
commit357387e664f78cd3727fbbd53178ae6b57257138 (patch)
tree545f2babe278e3a4d34812fdcd5446183bb56a16 /ui/qt5/horizonwizard.cc
parent8e85922cfe40b1a49b82c0f24138995321346500 (diff)
downloadhorizon-357387e664f78cd3727fbbd53178ae6b57257138.tar.gz
horizon-357387e664f78cd3727fbbd53178ae6b57257138.tar.bz2
horizon-357387e664f78cd3727fbbd53178ae6b57257138.tar.xz
horizon-357387e664f78cd3727fbbd53178ae6b57257138.zip
Qt UI: Add root passphrase page
Diffstat (limited to 'ui/qt5/horizonwizard.cc')
-rw-r--r--ui/qt5/horizonwizard.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc
index 2b3dd8b..b44c8fa 100644
--- a/ui/qt5/horizonwizard.cc
+++ b/ui/qt5/horizonwizard.cc
@@ -42,6 +42,7 @@ extern "C" {
#include "hostnamepage.hh"
#include "pkgsimple.hh"
#include "bootpage.hh"
+#include "rootpwpage.hh"
static std::map<int, std::string> help_id_map = {
{HorizonWizard::Page_Intro, "intro"},
@@ -195,6 +196,7 @@ HorizonWizard::HorizonWizard(QWidget *parent) : QWizard(parent) {
setPage(Page_Hostname, new HostnamePage);
setPage(Page_PkgSimple, new PkgSimplePage);
setPage(Page_Boot, new BootPage);
+ setPage(Page_Root, new RootPassphrasePage);
QObject::connect(this, &QWizard::helpRequested, [=](void) {
if(help_id_map.find(currentId()) == help_id_map.end()) {