summaryrefslogtreecommitdiffstats
path: root/src/tastytooltip.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:36:00 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-08 19:03:11 +0900
commita65bdf88e79355f01f13b9d755bf9945b37f249f (patch)
tree473abe47bcaebe293daf8ac9890e2245d7a168c8 /src/tastytooltip.cpp
parent44e77ecb2474060fd9fc64487273b7d5c448f68c (diff)
downloadtastymenu-a65bdf88.tar.gz
tastymenu-a65bdf88.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 12fe60049b43f7299e1f0cde44ec812d68bb867e)
Diffstat (limited to 'src/tastytooltip.cpp')
-rw-r--r--src/tastytooltip.cpp6
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 )