summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/instoptionsimpl.h
Unidiff
Diffstat (limited to 'noncore/settings/aqpkg/instoptionsimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/instoptionsimpl.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/noncore/settings/aqpkg/instoptionsimpl.h b/noncore/settings/aqpkg/instoptionsimpl.h
index 893f9bb..f4724a0 100644
--- a/noncore/settings/aqpkg/instoptionsimpl.h
+++ b/noncore/settings/aqpkg/instoptionsimpl.h
@@ -17,18 +17,24 @@
17#ifndef INSTALLOPTIONSIMPL_H 17#ifndef INSTALLOPTIONSIMPL_H
18#define INSTALLOPTIONSIMPL_H 18#define INSTALLOPTIONSIMPL_H
19 19
20#include "instoptions.h" 20#include <qdialog.h>
21 21
22class InstallOptionsDlgImpl : public InstallOptionsDlg 22class QCheckBox;
23
24class InstallOptionsDlgImpl : public QDialog
23{ 25{
26 Q_OBJECT
24public: 27public:
25 InstallOptionsDlgImpl( int flags, QWidget * parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0 ); 28 InstallOptionsDlgImpl( int flags, QWidget * parent = 0, const char* name = 0, bool modal = false, WFlags fl = 0 );
26 ~InstallOptionsDlgImpl(); 29 ~InstallOptionsDlgImpl();
27 int getFlags(); 30 int getFlags();
28 31
29protected:
30
31private: 32private:
33 QCheckBox* forceDepends;
34 QCheckBox* forceReinstall;
35 QCheckBox* forceRemove;
36 QCheckBox* forceOverwrite;
37 QCheckBox* verboseWget;
32}; 38};
33 39
34#endif 40#endif