summaryrefslogtreecommitdiffstats
path: root/src/kbfxtooltip.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 15:23:04 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 15:23:04 +0900
commit67a9fd3225cb598a4731ae04d41f254fc3d1a255 (patch)
tree11521abbd9f4c23c60e07161b82ba536d0b902ec /src/kbfxtooltip.cpp
parent9119aa80e2361c34c3e03919f97262a068c4d5d8 (diff)
downloadkbfx-67a9fd3225cb598a4731ae04d41f254fc3d1a255.tar.gz
kbfx-67a9fd3225cb598a4731ae04d41f254fc3d1a255.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kbfxtooltip.cpp')
-rw-r--r--src/kbfxtooltip.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kbfxtooltip.cpp b/src/kbfxtooltip.cpp
index a34e724..b929380 100644
--- a/src/kbfxtooltip.cpp
+++ b/src/kbfxtooltip.cpp
@@ -66,7 +66,7 @@ KbfxToolTip::KbfxToolTip ( TQWidget * parent, const char *name, WFlags fl ) :
connect ( _update_timer, TQT_SIGNAL ( timeout () ), this, TQT_SLOT ( logoMove () ) );
TQCursor kbfxCursor;
- kbfxCursor.setShape ( Qt::PointingHandCursor );
+ kbfxCursor.setShape ( TQt::PointingHandCursor );
this->setCursor ( ( const TQCursor ) kbfxCursor );
}
@@ -266,7 +266,7 @@ KbfxToolTip::paintEvent ( TQPaintEvent * pe )
TQPainter p;
p.begin ( this );
- p.setBackgroundMode ( Qt::TransparentMode );
+ p.setBackgroundMode ( TQt::TransparentMode );
p.drawPixmap ( TQRect ( 7, 16, _dude_box.width (), _dude_box.height () ),
_dude_box );
int _paddingX = ( ( _dude_box.height () - _dude.height () ) / 2 ) + 16;