diff options
Diffstat (limited to 'rbutil/rbutilqt/uninstall.h')
-rw-r--r-- | rbutil/rbutilqt/uninstall.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/rbutil/rbutilqt/uninstall.h b/rbutil/rbutilqt/uninstall.h index 4c774876e3..b4aa49a77b 100644 --- a/rbutil/rbutilqt/uninstall.h +++ b/rbutil/rbutilqt/uninstall.h | |||
@@ -16,11 +16,11 @@ | |||
16 | * KIND, either express or implied. | 16 | * KIND, either express or implied. |
17 | * | 17 | * |
18 | ****************************************************************************/ | 18 | ****************************************************************************/ |
19 | 19 | ||
20 | 20 | ||
21 | #ifndef UNINSTALL_H | 21 | #ifndef UNINSTALL_H |
22 | #define UNINSTALL_H | 22 | #define UNINSTALL_H |
23 | 23 | ||
24 | 24 | ||
25 | 25 | ||
26 | #include <QtGui> | 26 | #include <QtGui> |
@@ -28,36 +28,36 @@ | |||
28 | 28 | ||
29 | #include "progressloggerinterface.h" | 29 | #include "progressloggerinterface.h" |
30 | 30 | ||
31 | 31 | ||
32 | class Uninstaller : public QObject | 32 | class Uninstaller : public QObject |
33 | { | 33 | { |
34 | Q_OBJECT | 34 | Q_OBJECT |
35 | public: | 35 | public: |
36 | Uninstaller(QObject* parent,QString mountpoint) ; | 36 | Uninstaller(QObject* parent,QString mountpoint) ; |
37 | ~Uninstaller(){} | 37 | ~Uninstaller(){} |
38 | 38 | ||
39 | void deleteAll(ProgressloggerInterface* dp); | 39 | void deleteAll(ProgressloggerInterface* dp); |
40 | void uninstall(ProgressloggerInterface* dp); | 40 | void uninstall(ProgressloggerInterface* dp); |
41 | 41 | ||
42 | bool uninstallPossible(); | 42 | bool uninstallPossible(); |
43 | 43 | ||
44 | QStringList getAllSections(); | 44 | QStringList getAllSections(); |
45 | 45 | ||
46 | void setSections(QStringList sections) {uninstallSections = sections;} | 46 | void setSections(QStringList sections) {uninstallSections = sections;} |
47 | 47 | ||
48 | 48 | ||
49 | private slots: | 49 | private slots: |
50 | 50 | ||
51 | 51 | ||
52 | private: | 52 | private: |
53 | QString m_mountpoint; | 53 | QString m_mountpoint; |
54 | 54 | ||
55 | QStringList uninstallSections; | 55 | QStringList uninstallSections; |
56 | 56 | ||
57 | ProgressloggerInterface* m_dp; | 57 | ProgressloggerInterface* m_dp; |
58 | }; | 58 | }; |
59 | 59 | ||
60 | 60 | ||
61 | 61 | ||
62 | #endif | 62 | #endif |
63 | 63 | ||