diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 21:16:10 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-01 20:25:20 +0900 |
commit | 01627fbd795c62fb7f6e8f0bce8ae6cf3dc5b6de (patch) | |
tree | 6fc3295d8f5cf222b37b0721ed00b1a1f514cc96 /src/trayhoverpopup.cpp | |
parent | 166571710ff186cff2b09a83336f6aadc2c8340a (diff) | |
download | tork-01627fbd795c62fb7f6e8f0bce8ae6cf3dc5b6de.tar.gz tork-01627fbd795c62fb7f6e8f0bce8ae6cf3dc5b6de.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit a3180d7d508dc046a75a887d43a7e6b2d5f02468)
Diffstat (limited to 'src/trayhoverpopup.cpp')
-rw-r--r-- | src/trayhoverpopup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trayhoverpopup.cpp b/src/trayhoverpopup.cpp index 01fe070..9c2edd8 100644 --- a/src/trayhoverpopup.cpp +++ b/src/trayhoverpopup.cpp @@ -54,8 +54,8 @@ TrayHoverPopup::TrayHoverPopup(const TQPixmap & pix,TQWidget *parent, const char { setTimeout(0); setAutoDelete(false); - connect(&hover_timer,SIGNAL(timeout()),this,SLOT(onHoverTimeout())); - connect(&show_timer,SIGNAL(timeout()),this,SLOT(onShowTimeout())); + connect(&hover_timer,TQ_SIGNAL(timeout()),this,TQ_SLOT(onHoverTimeout())); + connect(&show_timer,TQ_SIGNAL(timeout()),this,TQ_SLOT(onShowTimeout())); create(); setPalette(TQToolTip::palette()); setLineWidth(1); |