diff options
Diffstat (limited to 'src/kmplayer_rss.h')
-rw-r--r-- | src/kmplayer_rss.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kmplayer_rss.h b/src/kmplayer_rss.h index 2a56781..8bb86d8 100644 --- a/src/kmplayer_rss.h +++ b/src/kmplayer_rss.h @@ -43,7 +43,7 @@ class KMPLAYER_NO_EXPORT Rss : public Mrl { public: KDE_NO_CDTOR_EXPORT Rss (NodePtr & d) : Mrl (d, id_node_rss) {} NodePtr childFromTag (const TQString & tag); - KDE_NO_EXPORT const char * nodeName () const { return "rss"; } + TDE_NO_EXPORT const char * nodeName () const { return "rss"; } bool expose () const { return false; } }; @@ -51,7 +51,7 @@ class KMPLAYER_NO_EXPORT Channel : public Mrl { public: KDE_NO_CDTOR_EXPORT Channel (NodePtr & d) : Mrl (d, id_node_channel) {} NodePtr childFromTag (const TQString & tag); - KDE_NO_EXPORT const char * nodeName () const { return "channel"; } + TDE_NO_EXPORT const char * nodeName () const { return "channel"; } PlayType playType () { return play_type_none; } void closed (); bool expose () const; @@ -61,7 +61,7 @@ class KMPLAYER_NO_EXPORT Item : public Mrl { public: KDE_NO_CDTOR_EXPORT Item (NodePtr & d) : Mrl (d, id_node_item) {} NodePtr childFromTag (const TQString & tag); - KDE_NO_EXPORT const char * nodeName () const { return "item"; } + TDE_NO_EXPORT const char * nodeName () const { return "item"; } PlayType playType () { return cached_play_type; } Mrl * linkNode (); void closed (); @@ -75,7 +75,7 @@ public: class KMPLAYER_NO_EXPORT Enclosure : public Mrl { public: KDE_NO_CDTOR_EXPORT Enclosure(NodePtr &d) : Mrl(d, id_node_enclosure) {} - KDE_NO_EXPORT const char * nodeName () const { return "enclosure"; } + TDE_NO_EXPORT const char * nodeName () const { return "enclosure"; } void closed (); bool expose () const { return false; } }; |