diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:46:43 +0000 |
commit | ffe8a83e053396df448e9413828527613ca3bd46 (patch) | |
tree | a73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /krandr/ktimerdialog.h | |
parent | 682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff) | |
download | tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'krandr/ktimerdialog.h')
-rw-r--r-- | krandr/ktimerdialog.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/krandr/ktimerdialog.h b/krandr/ktimerdialog.h index 23b4a92b0..8abe09d4b 100644 --- a/krandr/ktimerdialog.h +++ b/krandr/ktimerdialog.h @@ -67,9 +67,9 @@ class KTimerDialog : public KDialogBase * * For the rest of the arguments, See @see KDialogBase . */ - KTimerDialog( int msec, TimerStyle style=CountDown, QWidget *parent=0, + KTimerDialog( int msec, TimerStyle style=CountDown, TQWidget *parent=0, const char *name=0, bool modal=true, - const QString &caption=QString::null, + const TQString &caption=TQString::null, int buttonMask=Ok|Apply|Cancel, ButtonCode defaultButton=Ok, bool separator=false, const KGuiItem &user1=KGuiItem(), @@ -82,7 +82,7 @@ class KTimerDialog : public KDialogBase ~KTimerDialog(); /** - * Execute the dialog modelessly - see @see QDialog . + * Execute the dialog modelessly - see @see TQDialog . */ virtual void show(); @@ -117,7 +117,7 @@ class KTimerDialog : public KDialogBase * Overridden function which is used to set the main widget of the dialog. * @see KDialogBase::setMainWidget. */ - void setMainWidget( QWidget *widget ); + void setMainWidget( TQWidget *widget ); signals: /** @@ -127,7 +127,7 @@ class KTimerDialog : public KDialogBase public slots: /** - * Execute the dialog modally - see @see QDialog . + * Execute the dialog modally - see @see TQDialog . */ int exec(); @@ -148,17 +148,17 @@ class KTimerDialog : public KDialogBase */ void setupLayout(); - QTimer *totalTimer; - QTimer *updateTimer; + TQTimer *totalTimer; + TQTimer *updateTimer; int msecRemaining, updateInterval, msecTotal; ButtonCode buttonOnTimeout; TimerStyle tStyle; - QHBox *timerWidget; - QProgressBar *timerProgress; - QLabel *timerLabel; - QVBox *mainWidget; + TQHBox *timerWidget; + TQProgressBar *timerProgress; + TQLabel *timerLabel; + TQVBox *mainWidget; class KTimerDialogPrivate; KTimerDialogPrivate *d; |