diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-03 12:15:51 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-03 13:17:15 +0900 |
commit | 22a46b7525fb4db31bdd603c7a18a9204144ef0f (patch) | |
tree | 3b66e89fa223a12e750ac61ce9bbb5238adc221a /src/kmplayer_atom.h | |
parent | 132da05296348b21a3c600ecc299d3440e8f0f72 (diff) | |
download | kmplayer-22a46b7525fb4db31bdd603c7a18a9204144ef0f.tar.gz kmplayer-22a46b7525fb4db31bdd603c7a18a9204144ef0f.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kmplayer_atom.h')
-rw-r--r-- | src/kmplayer_atom.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kmplayer_atom.h b/src/kmplayer_atom.h index 09eec97..9aec0fd 100644 --- a/src/kmplayer_atom.h +++ b/src/kmplayer_atom.h @@ -43,7 +43,7 @@ class KMPLAYER_NO_EXPORT Feed : public Mrl { public: KDE_NO_CDTOR_EXPORT Feed (NodePtr & d) : Mrl (d, id_node_feed) {} NodePtr childFromTag (const TQString & tag); - KDE_NO_EXPORT const char * nodeName () const { return "feed"; } + TDE_NO_EXPORT const char * nodeName () const { return "feed"; } void closed (); bool expose () const { return !pretty_name.isEmpty (); } }; @@ -52,7 +52,7 @@ class KMPLAYER_NO_EXPORT Entry : public Mrl { public: KDE_NO_CDTOR_EXPORT Entry (NodePtr & d) : Mrl (d, id_node_entry) {} NodePtr childFromTag (const TQString & tag); - KDE_NO_EXPORT const char * nodeName () const { return "entry"; } + TDE_NO_EXPORT const char * nodeName () const { return "entry"; } PlayType playType () { return play_type_none; } void closed (); }; @@ -60,7 +60,7 @@ public: class KMPLAYER_NO_EXPORT Link : public Mrl { public: KDE_NO_CDTOR_EXPORT Link (NodePtr & d) : Mrl (d, id_node_link) {} - KDE_NO_EXPORT const char * nodeName () const { return "link"; } + TDE_NO_EXPORT const char * nodeName () const { return "link"; } PlayType playType (); void closed (); }; @@ -68,7 +68,7 @@ public: class KMPLAYER_NO_EXPORT Content : public Mrl { public: KDE_NO_CDTOR_EXPORT Content (NodePtr &d) : Mrl(d, id_node_content) {} - KDE_NO_EXPORT const char * nodeName () const { return "content"; } + TDE_NO_EXPORT const char * nodeName () const { return "content"; } PlayType playType (); void closed (); //bool expose () const { return isPlayable (); } |