diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-10 01:56:18 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-11-10 01:56:18 -0600 |
commit | a960999ec41917860c72591de8c072c060f71e0a (patch) | |
tree | 1ab8112bf3b77a804acbc66977080948d9ea0044 /ui/qt5/horizonwizard.cc | |
parent | 3b4ce3c25eac554499564b1946bc732a7c0bb69c (diff) | |
download | horizon-a960999ec41917860c72591de8c072c060f71e0a.tar.gz horizon-a960999ec41917860c72591de8c072c060f71e0a.tar.bz2 horizon-a960999ec41917860c72591de8c072c060f71e0a.tar.xz horizon-a960999ec41917860c72591de8c072c060f71e0a.zip |
Qt UI: Add draft for UI.Network.ChooseIface
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 dc80dea..59bef95 100644 --- a/ui/qt5/horizonwizard.cc +++ b/ui/qt5/horizonwizard.cc @@ -26,6 +26,7 @@ #include "intropage.hh" #include "inputpage.hh" #include "networkingpage.hh" +#include "networkifacepage.hh" #include "netsimplewifipage.hh" static std::map<int, std::string> help_id_map = { @@ -146,6 +147,7 @@ HorizonWizard::HorizonWizard(QWidget *parent) : QWizard(parent) { setPage(Page_Intro, new IntroPage); setPage(Page_Input, new InputPage); setPage(Page_Network, new NetworkingPage); + setPage(Page_Network_Iface, new NetworkIfacePage); QObject::connect(this, &QWizard::helpRequested, [=](void) { if(help_id_map.find(currentId()) == help_id_map.end()) { |