summaryrefslogtreecommitdiffstats
path: root/client/crystalbutton.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-19 11:41:17 -0600
committerTimothy Pearson <[email protected]>2011-12-19 11:41:17 -0600
commitcb4818cf88c6db8d0d799f38305da0fb95856053 (patch)
treef6580e34c4b714d5992f900c66f789f0917fa7ed /client/crystalbutton.cpp
parented6f377136e3ee497d97e76873d0869846dba888 (diff)
downloadtwin-style-crystal-cb4818cf88c6db8d0d799f38305da0fb95856053.tar.gz
twin-style-crystal-cb4818cf88c6db8d0d799f38305da0fb95856053.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'client/crystalbutton.cpp')
-rw-r--r--client/crystalbutton.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/crystalbutton.cpp b/client/crystalbutton.cpp
index 0834954..77f6e06 100644
--- a/client/crystalbutton.cpp
+++ b/client/crystalbutton.cpp
@@ -59,7 +59,7 @@ void CrystalButton::resetSize(bool FullSize)
void CrystalButton::setBitmap(ButtonImage *newimage)
{
image=newimage;
- tqrepaint(false);
+ repaint(false);
}
TQSize CrystalButton::sizeHint() const
@@ -88,7 +88,7 @@ int CrystalButton::buttonSizeV() const
void CrystalButton::enterEvent(TQEvent *e)
{
hover=true;
- if (factory->hovereffect)tqrepaint(false);
+ if (factory->hovereffect)repaint(false);
if (factory->animateHover)animation_timer.start(60);
TQButton::enterEvent(e);
}
@@ -96,7 +96,7 @@ void CrystalButton::enterEvent(TQEvent *e)
void CrystalButton::leaveEvent(TQEvent *e)
{
hover=false;
- if (factory->hovereffect)tqrepaint(false);
+ if (factory->hovereffect)repaint(false);
if (factory->animateHover)animation_timer.start(80);
TQButton::leaveEvent(e);
}
@@ -331,7 +331,7 @@ void CrystalButton::animate()
animation_timer.stop();
}
}
- tqrepaint(false);
+ repaint(false);
}
#include "crystalbutton.moc"