summaryrefslogtreecommitdiffstats
path: root/src/kbfxtooltip.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:33:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:33:37 +0900
commit43379ee382fcc18c575c57fdae218a7d0e51e526 (patch)
tree5fcb954cee7a289c2a3b6cac92171cb18b0bf800 /src/kbfxtooltip.cpp
parentbb92088ae48f7facbc0d25370eb7eb32f183328c (diff)
downloadkbfx-43379ee382fcc18c575c57fdae218a7d0e51e526.tar.gz
kbfx-43379ee382fcc18c575c57fdae218a7d0e51e526.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kbfxtooltip.cpp')
-rw-r--r--src/kbfxtooltip.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kbfxtooltip.cpp b/src/kbfxtooltip.cpp
index b929380..7c0b1aa 100644
--- a/src/kbfxtooltip.cpp
+++ b/src/kbfxtooltip.cpp
@@ -61,9 +61,9 @@ KbfxToolTip::KbfxToolTip ( TQWidget * parent, const char *name, WFlags fl ) :
_update_timer = new TQTimer ( this );
_move_timer = new TQTimer ( this );
- connect ( _hide_timer, TQT_SIGNAL ( timeout () ), this, TQT_SLOT ( hide () ) );
- connect ( _hide_timer, TQT_SIGNAL ( timeout () ), _agent, TQT_SLOT ( hide () ) );
- connect ( _update_timer, TQT_SIGNAL ( timeout () ), this, TQT_SLOT ( logoMove () ) );
+ connect ( _hide_timer, TQ_SIGNAL ( timeout () ), this, TQ_SLOT ( hide () ) );
+ connect ( _hide_timer, TQ_SIGNAL ( timeout () ), _agent, TQ_SLOT ( hide () ) );
+ connect ( _update_timer, TQ_SIGNAL ( timeout () ), this, TQ_SLOT ( logoMove () ) );
TQCursor kbfxCursor;
kbfxCursor.setShape ( TQt::PointingHandCursor );