diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:36:00 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-05 10:36:00 +0900 |
commit | 12fe60049b43f7299e1f0cde44ec812d68bb867e (patch) | |
tree | c13a04e5b355c98c76cb2428fb715eb299ff09ae /src/tastytooltip.cpp | |
parent | 687b219ed6ae8690450397a9b1aab24a796cad27 (diff) | |
download | tastymenu-12fe60049b43f7299e1f0cde44ec812d68bb867e.tar.gz tastymenu-12fe60049b43f7299e1f0cde44ec812d68bb867e.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/tastytooltip.cpp')
-rw-r--r-- | src/tastytooltip.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tastytooltip.cpp b/src/tastytooltip.cpp index cacfd71..c34e412 100644 --- a/src/tastytooltip.cpp +++ b/src/tastytooltip.cpp @@ -59,7 +59,7 @@ TastyToolTip::~TastyToolTip() void TastyToolTip::showTip(const TQPoint & point) { move(point); - TQTimer::singleShot(250, this, SLOT(show())); + TQTimer::singleShot(250, this, TQ_SLOT(show())); } void TastyToolTip::show() @@ -71,14 +71,14 @@ void TastyToolTip::show() void TastyToolTip::hideTip( ) { - TQTimer::singleShot(250, this, SLOT(hide())); + TQTimer::singleShot(250, this, TQ_SLOT(hide())); } void TastyToolTip::notify(const TQPoint & point ) { move(point); show(); - TQTimer::singleShot(5000, this, SLOT(hide())); + TQTimer::singleShot(5000, this, TQ_SLOT(hide())); } void TastyToolTip::setMessage( TQString message ) |