summaryrefslogtreecommitdiffstats
path: root/src/kmplayer_rp.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:56:14 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:56:14 -0600
commitee4b31b7bd3e899cad30866bf083c3ff6a4a9fc8 (patch)
tree0630bc6a5a0e9a1187503dca93799ee21055d050 /src/kmplayer_rp.cpp
parentf97c8a56e217f04e08776ccf8021721b7d919b7d (diff)
downloadkmplayer-ee4b31b7bd3e899cad30866bf083c3ff6a4a9fc8.tar.gz
kmplayer-ee4b31b7bd3e899cad30866bf083c3ff6a4a9fc8.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit f97c8a56e217f04e08776ccf8021721b7d919b7d.
Diffstat (limited to 'src/kmplayer_rp.cpp')
-rw-r--r--src/kmplayer_rp.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kmplayer_rp.cpp b/src/kmplayer_rp.cpp
index 36938b5..9ecdb62 100644
--- a/src/kmplayer_rp.cpp
+++ b/src/kmplayer_rp.cpp
@@ -183,11 +183,11 @@ KDE_NO_EXPORT NodePtr RP::Imfl::childFromTag (const TQString & tag) {
return 0L;
}
-KDE_NO_EXPORT void RP::Imfl::repaint () {
+KDE_NO_EXPORT void RP::Imfl::tqrepaint () {
if (!active ())
- kdWarning () << "Spurious Imfl repaint" << endl;
+ kdWarning () << "Spurious Imfl tqrepaint" << endl;
else if (surface () && width > 0 && height > 0)
- rp_surface->repaint (SRect (0, 0, width, height));
+ rp_surface->tqrepaint (SRect (0, 0, width, height));
}
KDE_NO_CDTOR_EXPORT RP::Image::Image (NodePtr & doc)
@@ -353,7 +353,7 @@ KDE_NO_EXPORT void RP::TimingsBase::update (int percentage) {
progress = percentage;
Node * p = parentNode ().ptr ();
if (p->id == RP::id_node_imfl)
- static_cast <RP::Imfl *> (p)->repaint ();
+ static_cast <RP::Imfl *> (p)->tqrepaint ();
}
KDE_NO_EXPORT void RP::TimingsBase::finish () {
@@ -447,11 +447,11 @@ KDE_NO_EXPORT void RP::Wipe::activate () {
//TODO implement 'type="push"'
TQString dir = getAttribute ("direction").lower ();
direction = dir_right;
- if (dir == TQString::fromLatin1 ("left"))
+ if (dir == TQString::tqfromLatin1 ("left"))
direction = dir_left;
- else if (dir == TQString::fromLatin1 ("up"))
+ else if (dir == TQString::tqfromLatin1 ("up"))
direction = dir_up;
- else if (dir == TQString::fromLatin1 ("down"))
+ else if (dir == TQString::tqfromLatin1 ("down"))
direction = dir_down;
TimingsBase::activate ();
}