summaryrefslogtreecommitdiff
path: root/ui/qt5/horizonwizard.cc
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-08 22:50:40 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-09 02:02:13 -0600
commit01e92019e6616d46a85beb5db6ddb84f58e253b6 (patch)
treee3bd5af3fdd8c610a2b823e6ec64a5454e36bf80 /ui/qt5/horizonwizard.cc
parent61b3bc944db6787711eb7a3f572ac4a306deca8b (diff)
downloadhorizon-01e92019e6616d46a85beb5db6ddb84f58e253b6.tar.gz
horizon-01e92019e6616d46a85beb5db6ddb84f58e253b6.tar.bz2
horizon-01e92019e6616d46a85beb5db6ddb84f58e253b6.tar.xz
horizon-01e92019e6616d46a85beb5db6ddb84f58e253b6.zip
Qt UI: Implement UI.Input 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 ae25238..89a25d1 100644
--- a/ui/qt5/horizonwizard.cc
+++ b/ui/qt5/horizonwizard.cc
@@ -20,6 +20,7 @@
#include <string>
#include "intropage.hh"
+#include "inputpage.hh"
#include "networkingpage.hh"
#include "netsimplewifipage.hh"
@@ -64,6 +65,7 @@ HorizonWizard::HorizonWizard(QWidget *parent) : QWizard(parent) {
setSizeGripEnabled(false);
setPage(Page_Intro, new IntroPage);
+ setPage(Page_Input, new InputPage);
setPage(Page_Network, new NetworkingPage);
QObject::connect(this, &QWizard::helpRequested, [=](void) {