diff options
Diffstat (limited to 'rbutil/rbutilqt/installzip.h')
-rw-r--r-- | rbutil/rbutilqt/installzip.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/rbutil/rbutilqt/installzip.h b/rbutil/rbutilqt/installzip.h index 629445d28f..9becbb1b8e 100644 --- a/rbutil/rbutilqt/installzip.h +++ b/rbutil/rbutilqt/installzip.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 INSTALLZIP_H | 21 | #ifndef INSTALLZIP_H |
22 | #define INSTALLZIP_H | 22 | #define INSTALLZIP_H |
23 | 23 | ||
24 | 24 | ||
25 | 25 | ||
26 | #include <QtGui> | 26 | #include <QtGui> |
@@ -28,9 +28,9 @@ | |||
28 | 28 | ||
29 | #include "progressloggerinterface.h" | 29 | #include "progressloggerinterface.h" |
30 | #include "httpget.h" | 30 | #include "httpget.h" |
31 | 31 | ||
32 | class ZipInstaller : public QObject | 32 | class ZipInstaller : public QObject |
33 | { | 33 | { |
34 | Q_OBJECT | 34 | Q_OBJECT |
35 | public: | 35 | public: |
36 | ZipInstaller(QObject* parent) ; | 36 | ZipInstaller(QObject* parent) ; |
@@ -48,11 +48,11 @@ public: | |||
48 | void setTarget(QString t) { m_target = t; } | 48 | void setTarget(QString t) { m_target = t; } |
49 | void setCache(QDir c) { m_cache = c; }; | 49 | void setCache(QDir c) { m_cache = c; }; |
50 | void setCache(QString c) { m_cache = QDir(c);} | 50 | void setCache(QString c) { m_cache = QDir(c);} |
51 | 51 | ||
52 | signals: | 52 | signals: |
53 | void done(bool error); | 53 | void done(bool error); |
54 | void cont(); | 54 | void cont(); |
55 | 55 | ||
56 | private slots: | 56 | private slots: |
57 | void updateDataReadProgress(int, int); | 57 | void updateDataReadProgress(int, int); |
58 | void downloadDone(bool); | 58 | void downloadDone(bool); |
@@ -69,14 +69,14 @@ private: | |||
69 | QString m_target; | 69 | QString m_target; |
70 | int runner; | 70 | int runner; |
71 | QDir m_cache; | 71 | QDir m_cache; |
72 | 72 | ||
73 | HttpGet *getter; | 73 | HttpGet *getter; |
74 | QTemporaryFile *downloadFile; | 74 | QTemporaryFile *downloadFile; |
75 | 75 | ||
76 | ProgressloggerInterface* m_dp; | 76 | ProgressloggerInterface* m_dp; |
77 | }; | 77 | }; |
78 | 78 | ||
79 | 79 | ||
80 | 80 | ||
81 | #endif | 81 | #endif |
82 | 82 | ||