diff options
Diffstat (limited to 'src/kbfxtooltip.cpp')
-rw-r--r-- | src/kbfxtooltip.cpp | 4 |
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; |