summaryrefslogtreecommitdiff
path: root/ui/qt5/horizonwizard.cc
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-19 14:45:25 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-11-19 14:45:25 -0600
commit331ccebe9fe8cbae97fe0b96ba845337778d84e1 (patch)
tree80f35ccadcaa1232310fd0f969355ad68c45eb91 /ui/qt5/horizonwizard.cc
parent4746a3666281e60a5a03ef9c33bfed43b0996ae7 (diff)
downloadhorizon-331ccebe9fe8cbae97fe0b96ba845337778d84e1.tar.gz
horizon-331ccebe9fe8cbae97fe0b96ba845337778d84e1.tar.bz2
horizon-331ccebe9fe8cbae97fe0b96ba845337778d84e1.tar.xz
horizon-331ccebe9fe8cbae97fe0b96ba845337778d84e1.zip
Qt UI: Add UI.Firmware page
Diffstat (limited to 'ui/qt5/horizonwizard.cc')
-rw-r--r--ui/qt5/horizonwizard.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc
index 7a64d2a..ba4b487 100644
--- a/ui/qt5/horizonwizard.cc
+++ b/ui/qt5/horizonwizard.cc
@@ -31,6 +31,9 @@ extern "C" {
#include "intropage.hh"
#include "inputpage.hh"
+#ifdef NON_LIBRE_FIRMWARE
+#include "firmwarepage.hh"
+#endif /* NON_LIBRE_FIRMWARE */
#include "networkingpage.hh"
#include "networkifacepage.hh"
#include "netsimplewifipage.hh"
@@ -173,6 +176,9 @@ HorizonWizard::HorizonWizard(QWidget *parent) : QWizard(parent) {
setPage(Page_Intro, new IntroPage);
setPage(Page_Input, new InputPage);
+#ifdef NON_LIBRE_FIRMWARE
+ setPage(Page_Firmware, new FirmwarePage);
+#endif /* NON_LIBRE_FIRMWARE */
setPage(Page_Network, new NetworkingPage);
setPage(Page_Network_Iface, new NetworkIfacePage);
setPage(Page_Network_Wireless, new NetworkSimpleWirelessPage);