summaryrefslogtreecommitdiffstats
path: root/lib/kofficeui/KoTabBar.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:30:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 20:22:52 +0900
commite1b37ac1936f81994a2c1aa2778298fbc757531f (patch)
tree2e2df5ea5786d581b10e51e0cbde9f4921697b2f /lib/kofficeui/KoTabBar.cpp
parentd08f80f854355e446d1c6be0eb50166646f7f291 (diff)
downloadkoffice-e1b37ac1.tar.gz
koffice-e1b37ac1.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit c0332621bc998c9786f4841e86a62b7711fe4abf)
Diffstat (limited to 'lib/kofficeui/KoTabBar.cpp')
-rw-r--r--lib/kofficeui/KoTabBar.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/kofficeui/KoTabBar.cpp b/lib/kofficeui/KoTabBar.cpp
index 4e7c39313..bb90c7b9e 100644
--- a/lib/kofficeui/KoTabBar.cpp
+++ b/lib/kofficeui/KoTabBar.cpp
@@ -363,17 +363,17 @@ KoTabBar::KoTabBar( TQWidget* parent, const char* name )
// initialize the scroll buttons
d->scrollFirstButton = new TQToolButton( this );
- connect( d->scrollFirstButton, TQT_SIGNAL( clicked() ),
- this, TQT_SLOT( scrollFirst() ) );
+ connect( d->scrollFirstButton, TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( scrollFirst() ) );
d->scrollLastButton = new TQToolButton( this );
- connect( d->scrollLastButton, TQT_SIGNAL( clicked() ),
- this, TQT_SLOT( scrollLast() ) );
+ connect( d->scrollLastButton, TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( scrollLast() ) );
d->scrollBackButton = new TQToolButton( this );
- connect( d->scrollBackButton, TQT_SIGNAL( clicked() ),
- this, TQT_SLOT( scrollBack() ) );
+ connect( d->scrollBackButton, TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( scrollBack() ) );
d->scrollForwardButton = new TQToolButton( this );
- connect( d->scrollForwardButton, TQT_SIGNAL( clicked() ),
- this, TQT_SLOT( scrollForward() ) );
+ connect( d->scrollForwardButton, TQ_SIGNAL( clicked() ),
+ this, TQ_SLOT( scrollForward() ) );
d->layoutButtons();
d->updateButtons();
}
@@ -634,7 +634,7 @@ void KoTabBar::autoScrollBack()
if( !canScrollBack() )
d->autoScroll = false;
else
- TQTimer::singleShot( 400, this, TQT_SLOT( autoScrollBack() ) );
+ TQTimer::singleShot( 400, this, TQ_SLOT( autoScrollBack() ) );
}
void KoTabBar::autoScrollForward()
@@ -646,7 +646,7 @@ void KoTabBar::autoScrollForward()
if( !canScrollForward() )
d->autoScroll = false;
else
- TQTimer::singleShot( 400, this, TQT_SLOT( autoScrollForward() ) );
+ TQTimer::singleShot( 400, this, TQ_SLOT( autoScrollForward() ) );
}
void KoTabBar::paintEvent( TQPaintEvent* )