diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /libkdepim/statusbarprogresswidget.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 |