diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
commit | 85723d544dd6aad9b2d0974dfe91ece438f03dfb (patch) | |
tree | 3baf4e3989ae66eef01b9cccc55501a1d0cfe5eb /src/k3btooltip.cpp | |
parent | a9a875756e14547b1d362ff6062b735b9f139d32 (diff) | |
download | k3b-85723d544dd6aad9b2d0974dfe91ece438f03dfb.tar.gz k3b-85723d544dd6aad9b2d0974dfe91ece438f03dfb.zip |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/k3btooltip.cpp')
-rw-r--r-- | src/k3btooltip.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/k3btooltip.cpp b/src/k3btooltip.cpp index 63ea037..a28c5c2 100644 --- a/src/k3btooltip.cpp +++ b/src/k3btooltip.cpp @@ -47,7 +47,7 @@ K3bToolTip::~K3bToolTip() void K3bToolTip::tip( const TQRect& rect, const TQString& text, int effect ) { - TQLabel* label = new TQLabel( text, tqparentWidget() ); + TQLabel* label = new TQLabel( text, parentWidget() ); label->setMargin( 6 ); if( K3bTheme* theme = k3bappcore->themeManager()->currentTheme() ) { label->setPaletteBackgroundColor( theme->backgroundColor() ); @@ -59,7 +59,7 @@ void K3bToolTip::tip( const TQRect& rect, const TQString& text, int effect ) void K3bToolTip::tip( const TQRect& rect, const TQPixmap& pix, int effect ) { - TQLabel* label = new TQLabel( tqparentWidget() ); + TQLabel* label = new TQLabel( parentWidget() ); label->setMargin( 6 ); if( K3bTheme* theme = k3bappcore->themeManager()->currentTheme() ) { label->setPaletteBackgroundColor( theme->backgroundColor() ); @@ -134,7 +134,7 @@ void K3bToolTip::hideTip() bool K3bToolTip::eventFilter( TQObject* o, TQEvent* e ) { - if( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(tqparentWidget()) ) { + if( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(parentWidget()) ) { switch( e->type() ) { case TQEvent::MouseButtonPress: case TQEvent::MouseButtonRelease: |