diff options
Diffstat (limited to 'src/kmplayer_asx.h')
-rw-r--r-- | src/kmplayer_asx.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kmplayer_asx.h b/src/kmplayer_asx.h index bfdbd7f..7eec2b9 100644 --- a/src/kmplayer_asx.h +++ b/src/kmplayer_asx.h @@ -21,7 +21,7 @@ #ifndef _KMPLAYER_ASX_H_ #define _KMPLAYER_ASX_H_ -#include <qstring.h> +#include <tqstring.h> #include "kmplayerplaylist.h" @@ -45,7 +45,7 @@ const short id_node_duration = 408; class KMPLAYER_NO_EXPORT Asx : public Mrl { public: KDE_NO_CDTOR_EXPORT Asx (NodePtr & d) : Mrl (d, id_node_asx) {} - NodePtr childFromTag (const QString & tag); + NodePtr childFromTag (const TQString & tag); KDE_NO_EXPORT const char * nodeName () const { return "ASX"; } bool expose () const { return !pretty_name.isEmpty (); } PlayType playType (); @@ -58,7 +58,7 @@ class KMPLAYER_NO_EXPORT Entry : public Mrl { public: KDE_NO_CDTOR_EXPORT Entry (NodePtr & d) : Mrl (d, id_node_entry), ref_child_count (0) {} - NodePtr childFromTag (const QString & tag); + NodePtr childFromTag (const TQString & tag); KDE_NO_EXPORT const char * nodeName () const { return "Entry"; } /** * False, but since we might have a 'base' child, we can have a rel. src @@ -76,7 +76,7 @@ public: class KMPLAYER_NO_EXPORT Ref : public Mrl { public: KDE_NO_CDTOR_EXPORT Ref (NodePtr & d) : Mrl (d, id_node_ref) {} - //NodePtr childFromTag (const QString & tag); + //NodePtr childFromTag (const TQString & tag); void opened (); KDE_NO_EXPORT const char * nodeName () const { return "Ref"; } bool expose () const; @@ -88,7 +88,7 @@ public: class KMPLAYER_NO_EXPORT EntryRef : public Mrl { public: KDE_NO_CDTOR_EXPORT EntryRef (NodePtr & d) : Mrl (d, id_node_entryref) {} - //NodePtr childFromTag (const QString & tag); + //NodePtr childFromTag (const TQString & tag); void opened (); KDE_NO_EXPORT const char * nodeName () const { return "EntryRef"; } }; |