From 97ca62239633b6d0fc02b3313f7135608456cb7c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 5 Nov 2023 15:23:04 +0900 Subject: Replace Qt with TQt Signed-off-by: Michele Calgaro (cherry picked from commit 67a9fd3225cb598a4731ae04d41f254fc3d1a255) --- src/kbfxtooltip.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kbfxtooltip.cpp') 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; -- cgit v1.2.3