diff options
author | Michele Calgaro <[email protected]> | 2024-05-05 17:48:46 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-05-06 16:02:34 +0900 |
commit | 7bfa0fb6156e976c839bb0d61459fd4bf6a0aa4e (patch) | |
tree | f63d015ae98a52b2020591c440eeceae38698c4c /libkpimidentities/identity.h | |
parent | 62c95d25331f3e2d652e2ae995ff51f7cb1f2bcf (diff) | |
download | tdepim-7bfa0fb6156e976c839bb0d61459fd4bf6a0aa4e.tar.gz tdepim-7bfa0fb6156e976c839bb0d61459fd4bf6a0aa4e.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit d6705bac5da767ff271b66c0f01ff6ed6352515e)
Diffstat (limited to 'libkpimidentities/identity.h')
-rw-r--r-- | libkpimidentities/identity.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libkpimidentities/identity.h b/libkpimidentities/identity.h index 6a6c972f4..cfc44260e 100644 --- a/libkpimidentities/identity.h +++ b/libkpimidentities/identity.h @@ -26,17 +26,17 @@ class TQDataStream; namespace KPIM { -KDE_EXPORT TQDataStream & operator<<( TQDataStream & stream, const KPIM::Signature & sig ); -KDE_EXPORT TQDataStream & operator>>( TQDataStream & stream, KPIM::Signature & sig ); +TDE_EXPORT TQDataStream & operator<<( TQDataStream & stream, const KPIM::Signature & sig ); +TDE_EXPORT TQDataStream & operator>>( TQDataStream & stream, KPIM::Signature & sig ); -KDE_EXPORT TQDataStream & operator<<( TQDataStream & stream, const KPIM::Identity & ident ); -KDE_EXPORT TQDataStream & operator>>( TQDataStream & stream, KPIM::Identity & ident ); +TDE_EXPORT TQDataStream & operator<<( TQDataStream & stream, const KPIM::Identity & ident ); +TDE_EXPORT TQDataStream & operator>>( TQDataStream & stream, KPIM::Identity & ident ); /** * @short abstraction of a signature (aka "footer"). * @author Marc Mutz <[email protected]> */ -class KDE_EXPORT Signature { +class TDE_EXPORT Signature { friend class Identity; friend TQDataStream & KPIM::operator<<( TQDataStream & stream, const Signature & sig ); @@ -92,7 +92,7 @@ private: }; /** User identity information */ -class KDE_EXPORT Identity +class TDE_EXPORT Identity { // only the identity manager should be able to construct and // destruct us, but then we get into problems with using |