summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/qt5/horizonwizard.cc3
-rw-r--r--ui/qt5/horizonwizard.hh2
2 files changed, 5 insertions, 0 deletions
diff --git a/ui/qt5/horizonwizard.cc b/ui/qt5/horizonwizard.cc
index 72ede4f..4eaddb5 100644
--- a/ui/qt5/horizonwizard.cc
+++ b/ui/qt5/horizonwizard.cc
@@ -165,6 +165,9 @@ HorizonWizard::HorizonWizard(QWidget *parent) : QWizard(parent) {
setFixedSize(QSize(650, 450));
+ mirror_domain = "distfiles.adelielinux.org";
+ version = "stable";
+
/* REQ: UI.Global.Back.Save */
setOption(IndependentPages);
/* REQ: UI.Language.Buttons, Iface.UI.StandardButtons */
diff --git a/ui/qt5/horizonwizard.hh b/ui/qt5/horizonwizard.hh
index b999daf..cd0d213 100644
--- a/ui/qt5/horizonwizard.hh
+++ b/ui/qt5/horizonwizard.hh
@@ -66,6 +66,8 @@ public:
HorizonWizard(QWidget *parent = nullptr);
QShortcut *f1, *f3, *f5, *f8;
+ std::string mirror_domain;
+ std::string version;
std::map<std::string, NetworkInterface> interfaces;
std::string chosen_auto_iface;
};