diff options
Diffstat (limited to 'style/qtcurve.cpp')
-rw-r--r-- | style/qtcurve.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/style/qtcurve.cpp b/style/qtcurve.cpp index 29c26a8..01ec4d1 100644 --- a/style/qtcurve.cpp +++ b/style/qtcurve.cpp @@ -1148,7 +1148,7 @@ QtCurveStyle::QtCurveStyle() if (opts.animatedProgress) { itsAnimationTimer = new TQTimer(this); - connect(itsAnimationTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(updateProgressPos())); + connect(itsAnimationTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(updateProgressPos())); } setSbType(); @@ -1556,11 +1556,11 @@ void QtCurveStyle::polish(const TQStyleControlElementData &ceData, ControlElemen if(::isKhtmlFormWidget(widget)) { itsKhtmlWidgets[widget]=true; - connect(widget, TQT_SIGNAL(destroyed(TQObject *)), this, TQT_SLOT(tdehtmlWidgetDestroyed(TQObject *))); + connect(widget, TQ_SIGNAL(destroyed(TQObject *)), this, TQ_SLOT(tdehtmlWidgetDestroyed(TQObject *))); } if(enableFilter && isSpecialHover(widget)) - connect(widget, TQT_SIGNAL(destroyed(TQObject *)), this, TQT_SLOT(hoverWidgetDestroyed(TQObject *))); + connect(widget, TQ_SIGNAL(destroyed(TQObject *)), this, TQ_SLOT(hoverWidgetDestroyed(TQObject *))); if(isWindowDragWidget(widget)) installObjectEventHandler(ceData, elementFlags, ptr, this); @@ -1754,8 +1754,8 @@ void QtCurveStyle::polish(const TQStyleControlElementData &ceData, ControlElemen } // This bit stolen form polyester... - connect(widget, TQT_SIGNAL(sliderMoved(int)), this, TQT_SLOT(sliderThumbMoved(int))); - connect(widget, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(sliderThumbMoved(int))); + connect(widget, TQ_SIGNAL(sliderMoved(int)), this, TQ_SLOT(sliderThumbMoved(int))); + connect(widget, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(sliderThumbMoved(int))); } else if (::tqt_cast<TQLineEdit*>(widget) || ::tqt_cast<TQTextEdit*>(widget)) { @@ -1813,7 +1813,7 @@ void QtCurveStyle::polish(const TQStyleControlElementData &ceData, ControlElemen { installObjectEventHandler(ceData, elementFlags, ptr, this); itsProgAnimWidgets[widget] = 0; - connect(widget, TQT_SIGNAL(destroyed(TQObject *)), this, TQT_SLOT(progressBarDestroyed(TQObject *))); + connect(widget, TQ_SIGNAL(destroyed(TQObject *)), this, TQ_SLOT(progressBarDestroyed(TQObject *))); if (!itsAnimationTimer->isActive()) itsAnimationTimer->start(PROGRESS_ANIMATION, false); } |