diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:14 -0600 |
commit | ee4b31b7bd3e899cad30866bf083c3ff6a4a9fc8 (patch) | |
tree | 0630bc6a5a0e9a1187503dca93799ee21055d050 /src/kmplayerplaylist.h | |
parent | f97c8a56e217f04e08776ccf8021721b7d919b7d (diff) | |
download | kmplayer-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/kmplayerplaylist.h')
-rw-r--r-- | src/kmplayerplaylist.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kmplayerplaylist.h b/src/kmplayerplaylist.h index 3371e70..8f3a519 100644 --- a/src/kmplayerplaylist.h +++ b/src/kmplayerplaylist.h @@ -164,7 +164,7 @@ public: }; /* - * Base class for double linked tree nodes having parent/siblings/children. + * Base class for double linked tree nodes having parent/siblings/tqchildren. * The linkage is a shared firstChild and weak parentNode. */ template <class T> @@ -246,7 +246,7 @@ typedef Item<Node>::WeakType NodePtrW; typedef Item<Attribute>::SharedType AttributePtr; typedef Item<Attribute>::WeakType AttributePtrW; typedef Item<Event>::SharedType EventPtr; -typedef List<Node> NodeList; // eg. for Node's children +typedef List<Node> NodeList; // eg. for Node's tqchildren typedef Item<NodeList>::SharedType NodeListPtr; typedef Item<NodeList>::WeakType NodeListPtrW; ITEM_AS_POINTER(KMPlayer::NodeList) @@ -402,7 +402,7 @@ public: virtual void finish (); /** * Stops element, sets state to state_deactivated. Calls deactivate() on - * activated/deferred children. May call childDone() when active() and not + * activated/deferred tqchildren. May call childDone() when active() and not * finished yet. */ virtual void deactivate (); @@ -440,7 +440,7 @@ public: */ virtual void opened (); /* - * Close tag is found by parser, children are appended + * Close tag is found by parser, tqchildren are appended */ virtual void closed (); protected: @@ -632,8 +632,8 @@ public: virtual SurfacePtr createSurface (NodePtr owner, const SRect & rect) = 0; virtual IRect toScreen (Single x, Single y, Single w, Single h) = 0; virtual void resize (const SRect & rect) = 0; - virtual void repaint () = 0; - virtual void repaint (const SRect &rect) = 0; + virtual void tqrepaint () = 0; + virtual void tqrepaint (const SRect &rect) = 0; virtual void video () = 0; void remove (); // remove from parent, mark ancestors dirty void markDirty (); // mark this and ancestors dirty |