diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-26 00:38:19 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-26 00:38:19 +0000 |
commit | f0296ef9e1f94e23c00d6f490e565d1dc768416d (patch) | |
tree | 7f3fd9f99621c111ff67f2d62feb5960a3371853 /src/part/progressBox.h | |
parent | 3098eb909534268622ce776f9a7bb5310d31b3c1 (diff) | |
download | filelight-f0296ef9e1f94e23c00d6f490e565d1dc768416d.tar.gz filelight-f0296ef9e1f94e23c00d6f490e565d1dc768416d.zip |
TQt4 port Filelight
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/filelight@1233561 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/part/progressBox.h')
-rw-r--r-- | src/part/progressBox.h | 11 |
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 |