summaryrefslogtreecommitdiffstats
path: root/knotes/knotebutton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knotes/knotebutton.cpp')
-rw-r--r--knotes/knotebutton.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/knotes/knotebutton.cpp b/knotes/knotebutton.cpp
index 5dc5009e..002dd0f6 100644
--- a/knotes/knotebutton.cpp
+++ b/knotes/knotebutton.cpp
@@ -34,7 +34,7 @@ KNoteButton::KNoteButton( const TQString& icon, TQWidget *parent, const char *na
: TQPushButton( parent, name )
{
setFocusPolicy( TQ_NoFocus );
- tqsetSizePolicy( TQSizePolicy( TQSizePolicy::Fixed, TQSizePolicy::Fixed ) );
+ setSizePolicy( TQSizePolicy( TQSizePolicy::Fixed, TQSizePolicy::Fixed ) );
m_flat = true;
@@ -58,9 +58,9 @@ void KNoteButton::leaveEvent( TQEvent * )
tqrepaint();
}
-TQSize KNoteButton::tqsizeHint() const
+TQSize KNoteButton::sizeHint() const
{
- return TQSize( TQPushButton::tqsizeHint().height(), TQPushButton::tqsizeHint().height() );
+ return TQSize( TQPushButton::sizeHint().height(), TQPushButton::sizeHint().height() );
}
void KNoteButton::drawButton( TQPainter* p )
@@ -78,7 +78,7 @@ void KNoteButton::drawButton( TQPainter* p )
if ( !m_flat )
flags |= TQStyle::Style_MouseOver;
- tqstyle().tqdrawPrimitive( TQStyle::PE_ButtonTool, p, rect(), tqcolorGroup(), flags );
+ tqstyle().tqdrawPrimitive( TQStyle::PE_ButtonTool, p, rect(), colorGroup(), flags );
drawButtonLabel( p );
}
@@ -102,8 +102,8 @@ void KNoteButton::drawButtonLabel( TQPainter* p )
// Shift button contents if pushed.
if ( isOn() || isDown() )
{
- dx += tqstyle().tqpixelMetric( TQStyle::PM_ButtonShiftHorizontal, this );
- dy += tqstyle().tqpixelMetric( TQStyle::PM_ButtonShiftVertical, this );
+ dx += tqstyle().pixelMetric( TQStyle::PM_ButtonShiftHorizontal, this );
+ dy += tqstyle().pixelMetric( TQStyle::PM_ButtonShiftVertical, this );
}
p->drawPixmap( dx, dy, pix );