diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-01 21:32:16 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-01 21:32:16 +0900 |
commit | bba3128085abe1a32cca43d9fb8ac02c2a29bf6b (patch) | |
tree | f831d0139ef6cd483a39cc1fb0cb39445f317185 /tdehtml/misc/loader.h | |
parent | cfbeb5efe9335d9a47bd5beebd81304cabab9f61 (diff) | |
download | tdelibs-bba3128085abe1a32cca43d9fb8ac02c2a29bf6b.tar.gz tdelibs-bba3128085abe1a32cca43d9fb8ac02c2a29bf6b.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdehtml/misc/loader.h')
-rw-r--r-- | tdehtml/misc/loader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tdehtml/misc/loader.h b/tdehtml/misc/loader.h index e340b3023..826759098 100644 --- a/tdehtml/misc/loader.h +++ b/tdehtml/misc/loader.h @@ -457,7 +457,7 @@ namespace tdehtml * init the cache in case it's not already. This needs to get called once * before using it. */ - KDE_EXPORT static void init(); + TDE_EXPORT static void init(); /** * Ask the cache for some url. Will return a cachedObject, and @@ -481,14 +481,14 @@ namespace tdehtml static void setSize( int bytes ); static int size() { return maxSize; }; static void statistics(); - KDE_EXPORT static void flush(bool force=false); + TDE_EXPORT static void flush(bool force=false); /** * clears the cache * Warning: call this only at the end of your program, to clean * up memory (useful for finding memory holes) */ - KDE_EXPORT static void clear(); + TDE_EXPORT static void clear(); static Loader *loader() { return m_loader; } |