diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-06 12:59:08 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 10:17:58 +0900 |
| commit | bae40f8a90b363d4ec2804e232b04dd9ca177807 (patch) | |
| tree | 2dc718ed2c37b7c2700a564dce60aafd3c64f015 /style/lipstik.cpp | |
| parent | b0e0c34a735d21289b71a5403ab0bf9af2677b29 (diff) | |
| download | tde-style-lipstik-bae40f8a.tar.gz tde-style-lipstik-bae40f8a.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit c801de6afa4a469abb4254d3eff3452bbb13fc3c)
Diffstat (limited to 'style/lipstik.cpp')
| -rw-r--r-- | style/lipstik.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/style/lipstik.cpp b/style/lipstik.cpp index 69fc5d0..e03594b 100644 --- a/style/lipstik.cpp +++ b/style/lipstik.cpp @@ -234,7 +234,7 @@ LipstikStyle::LipstikStyle() : TDEStyle( AllowMenuTransparency, ThreeButtonScrol if ( _animateProgressBar ) { animationTimer = new TQTimer( this ); - connect( animationTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(updateProgressPos()) ); + connect( animationTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(updateProgressPos()) ); } } @@ -293,7 +293,7 @@ void LipstikStyle::polish(const TQStyleControlElementData &ceData, ControlElemen if( !strcmp(widget->name(), "__tdehtml") ) { // is it a tdehtml widget...? tdehtmlWidgets[widget] = true; - connect(widget, TQT_SIGNAL(destroyed(TQObject*)), this, TQT_SLOT(tdehtmlWidgetDestroyed(TQObject*))); + connect(widget, TQ_SIGNAL(destroyed(TQObject*)), this, TQ_SLOT(tdehtmlWidgetDestroyed(TQObject*))); } // use tqt_cast where possible to check if the widget inheits one of the classes. might improve @@ -324,7 +324,7 @@ void LipstikStyle::polish(const TQStyleControlElementData &ceData, ControlElemen if( _animateProgressBar && ::tqt_cast<TQProgressBar*>(widget) ) { installObjectEventHandler(ceData, elementFlags, ptr, this); progAnimWidgets[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 (!animationTimer->isActive()) animationTimer->start( 50, false ); } else if( !qstrcmp(widget->className(), "KonqFrameStatusBar") ) { |
