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_atom.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_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 (); } |