summaryrefslogtreecommitdiffstats
path: root/libkpimidentities
diff options
context:
space:
mode:
Diffstat (limited to 'libkpimidentities')
-rw-r--r--libkpimidentities/identity.h12
-rw-r--r--libkpimidentities/identitycombo.cpp6
-rw-r--r--libkpimidentities/identitycombo.h4
-rw-r--r--libkpimidentities/identitymanager.h4
4 files changed, 13 insertions, 13 deletions
diff --git a/libkpimidentities/identity.h b/libkpimidentities/identity.h
index 6a6c972f..cfc44260 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 <mutz@kde.org>
*/
-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
diff --git a/libkpimidentities/identitycombo.cpp b/libkpimidentities/identitycombo.cpp
index 8644cb5a..200f93ac 100644
--- a/libkpimidentities/identitycombo.cpp
+++ b/libkpimidentities/identitycombo.cpp
@@ -48,9 +48,9 @@ IdentityCombo::IdentityCombo( IdentityManager* manager, TQWidget * parent, const
{
reloadCombo();
reloadUoidList();
- connect( this, TQT_SIGNAL(activated(int)), TQT_SLOT(slotEmitChanged(int)) );
- connect( manager, TQT_SIGNAL(changed()),
- TQT_SLOT(slotIdentityManagerChanged()) );
+ connect( this, TQ_SIGNAL(activated(int)), TQ_SLOT(slotEmitChanged(int)) );
+ connect( manager, TQ_SIGNAL(changed()),
+ TQ_SLOT(slotIdentityManagerChanged()) );
}
TQString IdentityCombo::currentIdentityName() const {
diff --git a/libkpimidentities/identitycombo.h b/libkpimidentities/identitycombo.h
index e6304607..f9594422 100644
--- a/libkpimidentities/identitycombo.h
+++ b/libkpimidentities/identitycombo.h
@@ -48,8 +48,8 @@ class Identity;
* @author Marc Mutz <mutz@kde.org>
**/
-class KDE_EXPORT IdentityCombo : public TQComboBox {
- Q_OBJECT
+class TDE_EXPORT IdentityCombo : public TQComboBox {
+ TQ_OBJECT
public:
IdentityCombo( IdentityManager* manager, TQWidget * parent=0, const char * name=0 );
diff --git a/libkpimidentities/identitymanager.h b/libkpimidentities/identitymanager.h
index 0162df4c..92d59157 100644
--- a/libkpimidentities/identitymanager.h
+++ b/libkpimidentities/identitymanager.h
@@ -50,11 +50,11 @@ class Identity;
* @short Manages the list of identities.
* @author Marc Mutz <mutz@kde.org>
**/
-#define IdentityManager KDE_EXPORT IdentityManager
+#define IdentityManager TDE_EXPORT IdentityManager
class IdentityManager : public ConfigManager, public DCOPObject
#undef IdentityManager
{
- Q_OBJECT
+ TQ_OBJECT
//
K_DCOP