diff options
author | Michele Calgaro <[email protected]> | 2024-01-07 19:46:19 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 19:46:19 +0900 |
commit | e9d5585a3efa2fafce1a10dccc411ad2315732de (patch) | |
tree | cfa24b1224501cc1ede539e67db5add336821aca /src/part/radialMap | |
parent | 1a75f32008be8c5bcb3add8055f1db5ae8bd602f (diff) | |
download | filelight-e9d5585a3efa2fafce1a10dccc411ad2315732de.tar.gz filelight-e9d5585a3efa2fafce1a10dccc411ad2315732de.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/part/radialMap')
-rw-r--r-- | src/part/radialMap/widget.cpp | 6 | ||||
-rw-r--r-- | src/part/radialMap/widgetEvents.cpp | 2 |
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() ); } } |