summaryrefslogtreecommitdiffstats
path: root/src/triestring.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-03 12:15:51 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-03 13:17:15 +0900
commit22a46b7525fb4db31bdd603c7a18a9204144ef0f (patch)
tree3b66e89fa223a12e750ac61ce9bbb5238adc221a /src/triestring.cpp
parent132da05296348b21a3c600ecc299d3440e8f0f72 (diff)
downloadkmplayer-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/triestring.cpp')
-rw-r--r--src/triestring.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/triestring.cpp b/src/triestring.cpp
index e07f8a7..93255ab 100644
--- a/src/triestring.cpp
+++ b/src/triestring.cpp
@@ -20,7 +20,7 @@
#ifdef TEST_TRIE
# define KMPLAYER_NO_EXPORT
# define KMPLAYER_EXPORT
-# define KDE_NO_EXPORT
+# define TDE_NO_EXPORT
# define KDE_NO_CDTOR_EXPORT
#else
# include <config.h>
@@ -79,12 +79,12 @@ KDE_NO_CDTOR_EXPORT TrieNode::~TrieNode () {
free (str);
}
-KDE_NO_EXPORT void TrieNode::unref () {
+TDE_NO_EXPORT void TrieNode::unref () {
if (--ref_count <= 0 && !first_child)
parent->removeChild (this);
}
-KDE_NO_EXPORT void TrieNode::removeChild (TrieNode * node) {
+TDE_NO_EXPORT void TrieNode::removeChild (TrieNode * node) {
if (node == first_child) {
first_child = node->next_sibling;
} else {