diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:57:28 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:57:28 -0600 |
commit | dc07846059a60d069687585cc72ff501a2096296 (patch) | |
tree | 432ead5b09c6ace7e804629f1f74a3ed58f003e0 /noatun/modules/kjofol-skin/kjbutton.cpp | |
parent | 3c299dfe48c0060272c2966fff599b3b417e2ee4 (diff) | |
download | tdemultimedia-dc07846059a60d069687585cc72ff501a2096296.tar.gz tdemultimedia-dc07846059a60d069687585cc72ff501a2096296.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'noatun/modules/kjofol-skin/kjbutton.cpp')
-rw-r--r-- | noatun/modules/kjofol-skin/kjbutton.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noatun/modules/kjofol-skin/kjbutton.cpp b/noatun/modules/kjofol-skin/kjbutton.cpp index edd53e2b..795dedfb 100644 --- a/noatun/modules/kjofol-skin/kjbutton.cpp +++ b/noatun/modules/kjofol-skin/kjbutton.cpp @@ -165,9 +165,9 @@ void KJButton::showPressed(bool b) { mShowPressed = b; if ( mShowPressed ) - tqrepaint(true); // tqrepaint with selected image + repaint(true); // repaint with selected image else - tqrepaint(false); // tqrepaint with default image (player-background) + repaint(false); // repaint with default image (player-background) } void KJButton::slotPlaylistShown(void) @@ -193,8 +193,8 @@ void KJButton::slotEqEnabled(bool on) void KJButton::mouseRelease(const TQPoint &, bool in) { - // tqrepaint with default image (player-background) - tqrepaint(false); + // repaint with default image (player-background) + repaint(false); if (!in) // only do something if users is still inside the button return; |