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 | 0d5a05983c0c2ba7a51bdeb1688dc232bacfa8ff (patch) | |
tree | 26e2e13d9f08727aa60872c0536662f8b2b5bf56 /src/kmplayer_rp.cpp | |
parent | 656e74dad5d31c4cc3eebdab9f58c679cfcc1ab0 (diff) | |
download | kmplayer-0d5a05983c0c2ba7a51bdeb1688dc232bacfa8ff.tar.gz kmplayer-0d5a05983c0c2ba7a51bdeb1688dc232bacfa8ff.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/kmplayer@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kmplayer_rp.cpp')
-rw-r--r-- | src/kmplayer_rp.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kmplayer_rp.cpp b/src/kmplayer_rp.cpp index 7b0b44f..9ecdb62 100644 --- a/src/kmplayer_rp.cpp +++ b/src/kmplayer_rp.cpp @@ -252,7 +252,7 @@ KDE_NO_EXPORT bool RP::Image::isReady (bool postpone_if_not) { KDE_NO_EXPORT Surface *RP::Image::surface () { if (!img_surface && !cached_img.isEmpty ()) { - Node * p = tqparentNode ().ptr (); + Node * p = parentNode ().ptr (); if (p && p->id == RP::id_node_imfl) { Surface *ps = static_cast <RP::Imfl *> (p)->surface (); if (ps) @@ -272,7 +272,7 @@ KDE_NO_EXPORT void RP::TimingsBase::activate () { srcx = srcy = srcw = srch = 0; for (Attribute * a= attributes ()->first ().ptr (); a; a = a->nextSibling ().ptr ()) { if (a->name () == StringPool::attr_target) { - for (NodePtr n = tqparentNode()->firstChild(); n; n= n->nextSibling()) + for (NodePtr n = parentNode()->firstChild(); n; n= n->nextSibling()) if (convertNode <Element> (n)-> getAttribute ("handle") == a->value ()) target = n; @@ -351,7 +351,7 @@ KDE_NO_EXPORT void RP::TimingsBase::begin () { KDE_NO_EXPORT void RP::TimingsBase::update (int percentage) { progress = percentage; - Node * p = tqparentNode ().ptr (); + Node * p = parentNode ().ptr (); if (p->id == RP::id_node_imfl) static_cast <RP::Imfl *> (p)->tqrepaint (); } @@ -479,14 +479,14 @@ KDE_NO_EXPORT void RP::ViewChange::activate () { KDE_NO_EXPORT void RP::ViewChange::begin () { kdDebug () << "RP::ViewChange::begin" << endl; setState (state_began); - Node * p = tqparentNode ().ptr (); + Node * p = parentNode ().ptr (); if (p->id == RP::id_node_imfl) static_cast <RP::Imfl *> (p)->needs_scene_img++; update (0); } KDE_NO_EXPORT void RP::ViewChange::finish () { - Node * p = tqparentNode ().ptr (); + Node * p = parentNode ().ptr (); if (p && p->id == RP::id_node_imfl) static_cast <RP::Imfl *> (p)->needs_scene_img--; TimingsBase::finish (); |