diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:30:48 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:30:48 -0600 |
commit | f97c8a56e217f04e08776ccf8021721b7d919b7d (patch) | |
tree | 436c68db12057f4d08acfbf37bec9cd8dfafcec8 /src/kmplayerplaylist.h | |
parent | d211eb866a067b537fb32cab5f10f8dd24a73ad7 (diff) | |
download | kmplayer-f97c8a56e217f04e08776ccf8021721b7d919b7d.tar.gz kmplayer-f97c8a56e217f04e08776ccf8021721b7d919b7d.zip |
Rename a number of old tq methods that are no longer tq specific
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 8f3a519..3371e70 100644 --- a/src/kmplayerplaylist.h +++ b/src/kmplayerplaylist.h @@ -164,7 +164,7 @@ public: }; /* - * Base class for double linked tree nodes having parent/siblings/tqchildren. + * Base class for double linked tree nodes having parent/siblings/children. * 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 tqchildren +typedef List<Node> NodeList; // eg. for Node's children 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 tqchildren. May call childDone() when active() and not + * activated/deferred children. 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, tqchildren are appended + * Close tag is found by parser, children 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 tqrepaint () = 0; - virtual void tqrepaint (const SRect &rect) = 0; + virtual void repaint () = 0; + virtual void repaint (const SRect &rect) = 0; virtual void video () = 0; void remove (); // remove from parent, mark ancestors dirty void markDirty (); // mark this and ancestors dirty |