diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:46:19 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 10:50:11 +0900 |
commit | 27c4f9d521b001349222740b1980871cc62f6cf4 (patch) | |
tree | 78c18fcd45d9044c3040990d641b87bb64c2f2b9 /src/part/radialMap/widget.cpp | |
parent | 2725bd4a283a9b1ea7baae06694c16830d89f62f (diff) | |
download | filelight-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/widget.cpp')
-rw-r--r-- | src/part/radialMap/widget.cpp | 6 |
1 files changed, 3 insertions, 3 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 |