diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-05 17:48:46 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-06 11:17:04 +0900 |
commit | d6705bac5da767ff271b66c0f01ff6ed6352515e (patch) | |
tree | a617f12381b078079df41f885e42af386439cea7 /libtdepim/weaver.h | |
parent | 8973dc76ab93ba7acb94478a37f480762a82f19d (diff) | |
download | tdepim-d6705bac5da767ff271b66c0f01ff6ed6352515e.tar.gz tdepim-d6705bac5da767ff271b66c0f01ff6ed6352515e.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libtdepim/weaver.h')
-rw-r--r-- | libtdepim/weaver.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libtdepim/weaver.h b/libtdepim/weaver.h index b949a1109..6f38b8701 100644 --- a/libtdepim/weaver.h +++ b/libtdepim/weaver.h @@ -50,22 +50,22 @@ namespace ThreadWeaver { Use setDebugLevel () to integrate adapt debug () to your platform. */ - KDE_EXPORT extern bool Debug; - KDE_EXPORT extern int DebugLevel; + TDE_EXPORT extern bool Debug; + TDE_EXPORT extern int DebugLevel; - KDE_EXPORT inline void setDebugLevel (bool debug, int level) + TDE_EXPORT inline void setDebugLevel (bool debug, int level) { Debug = debug; DebugLevel = level; } - KDE_EXPORT inline void debug(int severity, const char * cformat, ...) + TDE_EXPORT inline void debug(int severity, const char * cformat, ...) #ifdef __GNUC__ __attribute__ ( (format (printf, 2, 3 ) ) ) #endif ; - KDE_EXPORT inline void debug(int severity, const char * cformat, ...) + TDE_EXPORT inline void debug(int severity, const char * cformat, ...) { if ( Debug == true && ( severity<=DebugLevel || severity == 0) ) { @@ -96,7 +96,7 @@ namespace ThreadWeaver { Note: Do not create and use SPR/APR events, use Job::triggerSPR or Job::triggerAPR to create the requests. */ - class KDE_EXPORT Event : public TQCustomEvent + class TDE_EXPORT Event : public TQCustomEvent { public: enum Action { @@ -160,7 +160,7 @@ namespace ThreadWeaver { Note: When using an APR, you better make sure to receive the signal with some object, otherwise the calling thread will block forever! */ - class KDE_EXPORT Job : public TQObject + class TDE_EXPORT Job : public TQObject { TQ_OBJECT @@ -246,7 +246,7 @@ namespace ThreadWeaver { /** The class Thread is used to represent the worker threads in the weaver's inventory. It is not meant to be overloaded. */ - class KDE_EXPORT Thread : public TQThread + class TDE_EXPORT Thread : public TQThread { public: /** Create a thread. @@ -293,7 +293,7 @@ namespace ThreadWeaver { /** A weaver is the manager of worker threads (Thread objects) to which it assigns jobs from it's queue. */ - class KDE_EXPORT Weaver : public TQObject + class TDE_EXPORT Weaver : public TQObject { TQ_OBJECT |