diff options
Diffstat (limited to 'libkdepim/statusbarprogresswidget.h')
-rw-r--r-- | libkdepim/statusbarprogresswidget.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libkdepim/statusbarprogresswidget.h b/libkdepim/statusbarprogresswidget.h index 13d31bb96..ed06b2b85 100644 --- a/libkdepim/statusbarprogresswidget.h +++ b/libkdepim/statusbarprogresswidget.h @@ -51,13 +51,13 @@ class SSLLabel; class ProgressItem; class ProgressDialog; -class KDE_EXPORT StatusbarProgressWidget : public QFrame { +class KDE_EXPORT StatusbarProgressWidget : public TQFrame { Q_OBJECT public: - StatusbarProgressWidget( ProgressDialog* progressDialog, QWidget* parent, bool button = true ); + StatusbarProgressWidget( ProgressDialog* progressDialog, TQWidget* parent, bool button = true ); public slots: @@ -78,25 +78,25 @@ protected: void connectSingleItem(); void activateSingleItemMode(); - virtual bool eventFilter( QObject *, QEvent * ); + virtual bool eventFilter( TQObject *, TQEvent * ); private: KProgress* m_pProgressBar; - QLabel* m_pLabel; + TQLabel* m_pLabel; SSLLabel* m_sslLabel; - QPushButton* m_pButton; + TQPushButton* m_pButton; enum Mode { None, /*Label,*/ Progress }; uint mode; bool m_bShowButton; - QBoxLayout *box; - QWidgetStack *stack; + TQBoxLayout *box; + TQWidgetStack *stack; ProgressItem *mCurrentItem; ProgressDialog* mProgressDialog; - QTimer *mDelayTimer; - QTimer *mBusyTimer; + TQTimer *mDelayTimer; + TQTimer *mBusyTimer; }; } // namespace |