summaryrefslogtreecommitdiffstats
path: root/certmanager/lib/ui/progressbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'certmanager/lib/ui/progressbar.h')
-rw-r--r--certmanager/lib/ui/progressbar.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/certmanager/lib/ui/progressbar.h b/certmanager/lib/ui/progressbar.h
index 41d96796..1120a0dd 100644
--- a/certmanager/lib/ui/progressbar.h
+++ b/certmanager/lib/ui/progressbar.h
@@ -33,23 +33,23 @@
#ifndef __KLEO_PROGRESSBAR_H__
#define __KLEO_PROGRESSBAR_H__
-#include <qprogressbar.h>
+#include <tqprogressbar.h>
#include <kdepimmacros.h>
class QTimer;
namespace Kleo {
/**
- @short A QProgressBar with self-powered busy indicator
+ @short A TQProgressBar with self-powered busy indicator
*/
- class KDE_EXPORT ProgressBar : public QProgressBar {
+ class KDE_EXPORT ProgressBar : public TQProgressBar {
Q_OBJECT
public:
- ProgressBar( QWidget * parent=0, const char * name=0, WFlags f=0 );
+ ProgressBar( TQWidget * parent=0, const char * name=0, WFlags f=0 );
public slots:
- void slotProgress( const QString & message, int type, int current, int total );
- void slotProgress( const QString & message, int current, int total );
+ void slotProgress( const TQString & message, int type, int current, int total );
+ void slotProgress( const TQString & message, int current, int total );
/*! reimplementation to support self-powered busy indicator */
void setProgress( int progress );
/*! reimplementation to support self-powered busy indicator */
@@ -57,7 +57,7 @@ namespace Kleo {
/*! reimplementation to support self-powered busy indicator */
void reset();
/*! reimplementation to preserve visibility */
- void setProgress( int cur, int tot ) { QProgressBar::setProgress( cur, tot ); }
+ void setProgress( int cur, int tot ) { TQProgressBar::setProgress( cur, tot ); }
private slots:
void slotBusyTimerTick();
@@ -66,7 +66,7 @@ namespace Kleo {
void fixup( bool );
private:
- QTimer * mBusyTimer;
+ TQTimer * mBusyTimer;
int mRealProgress;
};
}