summaryrefslogtreecommitdiffstats
path: root/src/kmplayerplaylist.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:36:53 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:36:53 -0600
commit0ed6bc56f9167e115f14d18b4bc8ce18fb7674b6 (patch)
treebbf293d0f4a7d04626e2996263f985f13921869a /src/kmplayerplaylist.h
parent81ad3b51a1f061b0934426aaf339917f76c0cfc5 (diff)
downloadkmplayer-0ed6bc56f9167e115f14d18b4bc8ce18fb7674b6.tar.gz
kmplayer-0ed6bc56f9167e115f14d18b4bc8ce18fb7674b6.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'src/kmplayerplaylist.h')
-rw-r--r--src/kmplayerplaylist.h12
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