diff options
Diffstat (limited to 'kaddressbook/printing/printprogress.h')
-rw-r--r-- | kaddressbook/printing/printprogress.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kaddressbook/printing/printprogress.h b/kaddressbook/printing/printprogress.h index fd2a494f8..83c6f3391 100644 --- a/kaddressbook/printing/printprogress.h +++ b/kaddressbook/printing/printprogress.h @@ -24,7 +24,7 @@ #ifndef PRINTPROGRESS_H #define PRINTPROGRESS_H -#include <qwidget.h> +#include <tqwidget.h> class QProgressBar; class QString; @@ -42,13 +42,13 @@ class PrintProgress : public QWidget Q_OBJECT public: - PrintProgress( QWidget *parent, const char *name = 0 ); + PrintProgress( TQWidget *parent, const char *name = 0 ); ~PrintProgress(); /** Add a message to the message log. Give the user something to admire :-) */ - void addMessage( const QString& ); + void addMessage( const TQString& ); /** Set the progress to a certain amount. Steps are from 0 to 100. @@ -56,10 +56,10 @@ class PrintProgress : public QWidget void setProgress( int ); private: - QStringList mMessages; + TQStringList mMessages; - QTextBrowser* mLogBrowser; - QProgressBar* mProgressBar; + TQTextBrowser* mLogBrowser; + TQProgressBar* mProgressBar; }; } |