summaryrefslogtreecommitdiffstats
path: root/src/widgets/qspinwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/qspinwidget.cpp')
-rw-r--r--src/widgets/qspinwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/qspinwidget.cpp b/src/widgets/qspinwidget.cpp
index 7ea124cc..839bf872 100644
--- a/src/widgets/qspinwidget.cpp
+++ b/src/widgets/qspinwidget.cpp
@@ -87,7 +87,7 @@ TQSpinWidget::TQSpinWidget( TQWidget* parent, const char* name )
: TQWidget( parent, name )
{
d = new TQSpinWidgetPrivate();
- connect( &d->auRepTimer, SIGNAL( timeout() ), this, SLOT( timerDone() ) );
+ connect( &d->auRepTimer, TQ_SIGNAL( timeout() ), this, TQ_SLOT( timerDone() ) );
setFocusPolicy( StrongFocus );
arrange();
@@ -209,7 +209,7 @@ void TQSpinWidget::timerDone()
{
// we use a double timer to make it possible for users to do
// something with 0-timer on valueChanged.
- TQTimer::singleShot( 1, this, SLOT( timerDoneEx() ) );
+ TQTimer::singleShot( 1, this, TQ_SLOT( timerDoneEx() ) );
}
void TQSpinWidget::timerDoneEx()