summaryrefslogtreecommitdiffstats
path: root/src/part/radialMap
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:46:19 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-09 10:50:11 +0900
commit27c4f9d521b001349222740b1980871cc62f6cf4 (patch)
tree78c18fcd45d9044c3040990d641b87bb64c2f2b9 /src/part/radialMap
parent2725bd4a283a9b1ea7baae06694c16830d89f62f (diff)
downloadfilelight-27c4f9d5.tar.gz
filelight-27c4f9d5.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit e9d5585a3efa2fafce1a10dccc411ad2315732de)
Diffstat (limited to 'src/part/radialMap')
-rw-r--r--src/part/radialMap/widget.cpp6
-rw-r--r--src/part/radialMap/widgetEvents.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/part/radialMap/widget.cpp b/src/part/radialMap/widget.cpp
index 7534998..f2e20f7 100644
--- a/src/part/radialMap/widget.cpp
+++ b/src/part/radialMap/widget.cpp
@@ -28,9 +28,9 @@ RadialMap::Widget::Widget( TQWidget *parent, const char *name )
const TQBitmap *cursor = KCursor::handCursor().bitmap();
m_tip = new SegmentTip(cursor ? cursor->height() : 16);
- connect( this, TQT_SIGNAL(created( const Directory* )), TQT_SLOT(sendFakeMouseEvent()) );
- connect( this, TQT_SIGNAL(created( const Directory* )), TQT_SLOT(update()) );
- connect( &m_timer, TQT_SIGNAL(timeout()), TQT_SLOT(resizeTimeout()) );
+ connect( this, TQ_SIGNAL(created( const Directory* )), TQ_SLOT(sendFakeMouseEvent()) );
+ connect( this, TQ_SIGNAL(created( const Directory* )), TQ_SLOT(update()) );
+ connect( &m_timer, TQ_SIGNAL(timeout()), TQ_SLOT(resizeTimeout()) );
}
TQString
diff --git a/src/part/radialMap/widgetEvents.cpp b/src/part/radialMap/widgetEvents.cpp
index 1ad7f6d..863f906 100644
--- a/src/part/radialMap/widgetEvents.cpp
+++ b/src/part/radialMap/widgetEvents.cpp
@@ -213,7 +213,7 @@ RadialMap::Widget::mousePressEvent( TQMouseEvent *e )
if (userIntention == KMessageBox::Continue) {
TDEIO::Job *job = TDEIO::del( url );
job->setWindow( this );
- connect( job, TQT_SIGNAL(result( TDEIO::Job* )), TQT_SLOT(deleteJobFinished( TDEIO::Job* )) );
+ connect( job, TQ_SIGNAL(result( TDEIO::Job* )), TQ_SLOT(deleteJobFinished( TDEIO::Job* )) );
TQApplication::setOverrideCursor( KCursor::workingCursor() );
}
}