summaryrefslogtreecommitdiffstats
path: root/src/tastytooltip.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-05 10:36:00 +0900
committerMichele Calgaro <[email protected]>2024-01-05 10:36:00 +0900
commit12fe60049b43f7299e1f0cde44ec812d68bb867e (patch)
treec13a04e5b355c98c76cb2428fb715eb299ff09ae /src/tastytooltip.cpp
parent687b219ed6ae8690450397a9b1aab24a796cad27 (diff)
downloadtastymenu-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.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 )