diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-29 17:18:58 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-29 17:18:58 -0600 |
commit | c6771c06689dfb49b8050e99b9c3572c27a8cb3e (patch) | |
tree | fa7a5d1c9fe7dddcb1478d3ebe6d22babe1c2300 /ui/qt5/horizonwizard.cc | |
parent | b9fad79ccf775de757997f532a45d6c300ae2a73 (diff) | |
download | horizon-c6771c06689dfb49b8050e99b9c3572c27a8cb3e.tar.gz horizon-c6771c06689dfb49b8050e99b9c3572c27a8cb3e.tar.bz2 horizon-c6771c06689dfb49b8050e99b9c3572c27a8cb3e.tar.xz horizon-c6771c06689dfb49b8050e99b9c3572c27a8cb3e.zip |
Qt UI: Add Accounts page, still in progress
Diffstat (limited to 'ui/qt5/horizonwizard.cc')
-rw-r--r-- | ui/qt5/horizonwizard.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc index 3002c19..cf2d5c9 100644 --- a/ui/qt5/horizonwizard.cc +++ b/ui/qt5/horizonwizard.cc @@ -43,6 +43,7 @@ extern "C" { #include "pkgsimple.hh" #include "bootpage.hh" #include "rootpwpage.hh" +#include "accountpage.hh" static std::map<int, std::string> help_id_map = { {HorizonWizard::Page_Intro, "intro"}, @@ -197,6 +198,7 @@ HorizonWizard::HorizonWizard(QWidget *parent) : QWizard(parent) { setPage(Page_PkgSimple, new PkgSimplePage); setPage(Page_Boot, new BootPage); setPage(Page_Root, new RootPassphrasePage); + setPage(Page_Accounts, new AccountPage); QObject::connect(this, &QWizard::helpRequested, [=](void) { if(help_id_map.find(currentId()) == help_id_map.end()) { |