summaryrefslogtreecommitdiff
path: root/ui/qt5/partitiondiskpage.hh
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt5/partitiondiskpage.hh')
-rw-r--r--ui/qt5/partitiondiskpage.hh10
1 files changed, 9 insertions, 1 deletions
diff --git a/ui/qt5/partitiondiskpage.hh b/ui/qt5/partitiondiskpage.hh
index fc85926..d687943 100644
--- a/ui/qt5/partitiondiskpage.hh
+++ b/ui/qt5/partitiondiskpage.hh
@@ -15,7 +15,11 @@
#include "horizonwizardpage.hh"
-#include <QListWidget>
+#ifdef HAS_INSTALL_ENV
+# include <QListWidget>
+#else /* !HAS_INSTALL_ENV */
+# include <QLineEdit>
+#endif /* HAS_INSTALL_ENV */
class PartitionDiskPage : public HorizonWizardPage {
public:
@@ -23,7 +27,11 @@ public:
void initializePage() override;
bool isComplete() const override;
private:
+#ifdef HAS_INSTALL_ENV
QListWidget *diskChooser;
+#else /* !HAS_INSTALL_ENV */
+ QLineEdit *diskChooser;
+#endif /* HAS_INSTALL_ENV */
};
#endif /* !PARTITIONDISKPAGE_HH */