summaryrefslogtreecommitdiffstats
path: root/src/part/progressBox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/part/progressBox.h')
-rw-r--r--src/part/progressBox.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/part/progressBox.h b/src/part/progressBox.h
index 17cc2a6..acd605c 100644
--- a/src/part/progressBox.h
+++ b/src/part/progressBox.h
@@ -4,18 +4,19 @@
#ifndef PROGRESSBOX_H
#define PROGRESSBOX_H
-#include <qlabel.h>
-#include <qtimer.h>
+#include <tqlabel.h>
+#include <tqtimer.h>
namespace KIO { class Job; }
-class ProgressBox : public QLabel
+class ProgressBox : public TQLabel
{
Q_OBJECT
+ TQ_OBJECT
public:
- ProgressBox( QWidget*, QObject* );
+ ProgressBox( TQWidget*, TQObject* );
void setText( int );
@@ -26,7 +27,7 @@ public slots:
void halt();
private:
- QTimer m_timer;
+ TQTimer m_timer;
};
#endif