diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-30 06:10:56 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-30 06:10:56 +0000 |
commit | 769e63d24adf5c844137484f06a972fcce732d6a (patch) | |
tree | 5185797dcb3ff4b1b3cb71d367123bf89eb2410f /src/kmplayer_asx.h | |
parent | 0a8af92185eac74d48da1225e6053a0d66c078f5 (diff) | |
download | kmplayer-769e63d24adf5c844137484f06a972fcce732d6a.tar.gz kmplayer-769e63d24adf5c844137484f06a972fcce732d6a.zip |
TQt4 port kmplayer
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmplayer@1238840 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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"; } }; |