diff options
author | Michele Calgaro <[email protected]> | 2024-05-03 12:15:51 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-07 12:22:48 +0900 |
commit | c5d77586845f1afdb3869941ed4612de6be566a0 (patch) | |
tree | f0fd879959ef68abe19bc21e9f2e58ed04e9b55a /src/kmplayer_rss.h | |
parent | 2debdf218d21f3e2efc518481f0aea57a46b6539 (diff) | |
download | kmplayer-c5d77586845f1afdb3869941ed4612de6be566a0.tar.gz kmplayer-c5d77586845f1afdb3869941ed4612de6be566a0.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 22a46b7525fb4db31bdd603c7a18a9204144ef0f)
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; } }; |