summaryrefslogtreecommitdiffstats
path: root/kontact
diff options
context:
space:
mode:
Diffstat (limited to 'kontact')
-rw-r--r--kontact/interfaces/core.h2
-rw-r--r--kontact/interfaces/plugin.h2
-rw-r--r--kontact/interfaces/summary.h2
-rw-r--r--kontact/interfaces/uniqueapphandler.h4
-rw-r--r--kontact/plugins/kmail/kcmkmailsummary.cpp2
-rw-r--r--kontact/plugins/korganizer/kcmkorgsummary.cpp2
-rw-r--r--kontact/plugins/newsticker/kcmkontactknt.cpp2
-rw-r--r--kontact/plugins/specialdates/kcmsdsummary.cpp2
-rw-r--r--kontact/plugins/summary/kcmkontactsummary.cpp2
-rw-r--r--kontact/src/kcmkontact.cpp2
-rw-r--r--kontact/src/prefs.kcfgc2
11 files changed, 12 insertions, 12 deletions
diff --git a/kontact/interfaces/core.h b/kontact/interfaces/core.h
index 7317febc1..a075c2431 100644
--- a/kontact/interfaces/core.h
+++ b/kontact/interfaces/core.h
@@ -38,7 +38,7 @@ class Plugin;
/**
This class provides the interface to the Kontact core for the plugins.
*/
-class KDE_EXPORT Core : public KParts::MainWindow
+class TDE_EXPORT Core : public KParts::MainWindow
{
TQ_OBJECT
diff --git a/kontact/interfaces/plugin.h b/kontact/interfaces/plugin.h
index af7cbfa71..c08957411 100644
--- a/kontact/interfaces/plugin.h
+++ b/kontact/interfaces/plugin.h
@@ -55,7 +55,7 @@ class Summary;
to get a plugin. It can insert an icon into the sidepane,
add widgets to the widgetstack and add menu items via XMLGUI.
*/
-class KDE_EXPORT Plugin : public TQObject, virtual public KXMLGUIClient
+class TDE_EXPORT Plugin : public TQObject, virtual public KXMLGUIClient
{
TQ_OBJECT
diff --git a/kontact/interfaces/summary.h b/kontact/interfaces/summary.h
index 945395c80..303babb3d 100644
--- a/kontact/interfaces/summary.h
+++ b/kontact/interfaces/summary.h
@@ -33,7 +33,7 @@ namespace Kontact
/**
Summary widget for display in the Summary View plugin.
*/
-class KDE_EXPORT Summary : public TQWidget
+class TDE_EXPORT Summary : public TQWidget
{
TQ_OBJECT
diff --git a/kontact/interfaces/uniqueapphandler.h b/kontact/interfaces/uniqueapphandler.h
index bef34d470..d6a339634 100644
--- a/kontact/interfaces/uniqueapphandler.h
+++ b/kontact/interfaces/uniqueapphandler.h
@@ -36,7 +36,7 @@ namespace Kontact
* By default this means simply bringing the main window to the front,
* but newInstance can be reimplemented.
*/
-class KDE_EXPORT UniqueAppHandler : public DCOPObject
+class TDE_EXPORT UniqueAppHandler : public DCOPObject
{
K_DCOP
@@ -91,7 +91,7 @@ template <class T> class UniqueAppHandlerFactory : public UniqueAppHandlerFactor
* Kontact takes over from there.
*
*/
-class KDE_EXPORT UniqueAppWatcher : public TQObject
+class TDE_EXPORT UniqueAppWatcher : public TQObject
{
TQ_OBJECT
diff --git a/kontact/plugins/kmail/kcmkmailsummary.cpp b/kontact/plugins/kmail/kcmkmailsummary.cpp
index 690cbc500..20ba1a729 100644
--- a/kontact/plugins/kmail/kcmkmailsummary.cpp
+++ b/kontact/plugins/kmail/kcmkmailsummary.cpp
@@ -41,7 +41,7 @@
extern "C"
{
- KDE_EXPORT TDECModule *create_kmailsummary( TQWidget *parent, const char * )
+ TDE_EXPORT TDECModule *create_kmailsummary( TQWidget *parent, const char * )
{
return new KCMKMailSummary( parent, "kcmkmailsummary" );
}
diff --git a/kontact/plugins/korganizer/kcmkorgsummary.cpp b/kontact/plugins/korganizer/kcmkorgsummary.cpp
index 4c0945e79..7e2dd0a33 100644
--- a/kontact/plugins/korganizer/kcmkorgsummary.cpp
+++ b/kontact/plugins/korganizer/kcmkorgsummary.cpp
@@ -41,7 +41,7 @@
extern "C"
{
- KDE_EXPORT TDECModule *create_korgsummary( TQWidget *parent, const char * )
+ TDE_EXPORT TDECModule *create_korgsummary( TQWidget *parent, const char * )
{
return new KCMKOrgSummary( parent, "kcmkorgsummary" );
}
diff --git a/kontact/plugins/newsticker/kcmkontactknt.cpp b/kontact/plugins/newsticker/kcmkontactknt.cpp
index 4a698ff83..929be9aa8 100644
--- a/kontact/plugins/newsticker/kcmkontactknt.cpp
+++ b/kontact/plugins/newsticker/kcmkontactknt.cpp
@@ -49,7 +49,7 @@
extern "C"
{
- KDE_EXPORT TDECModule *create_kontactknt( TQWidget *parent, const char * )
+ TDE_EXPORT TDECModule *create_kontactknt( TQWidget *parent, const char * )
{
return new KCMKontactKNT( parent, "kcmkontactknt" );
}
diff --git a/kontact/plugins/specialdates/kcmsdsummary.cpp b/kontact/plugins/specialdates/kcmsdsummary.cpp
index f35cc2b49..f0b874148 100644
--- a/kontact/plugins/specialdates/kcmsdsummary.cpp
+++ b/kontact/plugins/specialdates/kcmsdsummary.cpp
@@ -43,7 +43,7 @@
extern "C"
{
- KDE_EXPORT TDECModule *create_sdsummary( TQWidget *parent, const char * )
+ TDE_EXPORT TDECModule *create_sdsummary( TQWidget *parent, const char * )
{
return new KCMSDSummary( parent, "kcmsdsummary" );
}
diff --git a/kontact/plugins/summary/kcmkontactsummary.cpp b/kontact/plugins/summary/kcmkontactsummary.cpp
index 591cb033b..d400df313 100644
--- a/kontact/plugins/summary/kcmkontactsummary.cpp
+++ b/kontact/plugins/summary/kcmkontactsummary.cpp
@@ -43,7 +43,7 @@
extern "C"
{
- KDE_EXPORT TDECModule *create_kontactsummary( TQWidget *parent, const char * ) {
+ TDE_EXPORT TDECModule *create_kontactsummary( TQWidget *parent, const char * ) {
return new KCMKontactSummary( parent, "kcmkontactsummary" );
}
}
diff --git a/kontact/src/kcmkontact.cpp b/kontact/src/kcmkontact.cpp
index b1d0b0399..7c4b19286 100644
--- a/kontact/src/kcmkontact.cpp
+++ b/kontact/src/kcmkontact.cpp
@@ -42,7 +42,7 @@
extern "C"
{
- KDE_EXPORT TDECModule *create_kontactconfig( TQWidget *parent, const char * ) {
+ TDE_EXPORT TDECModule *create_kontactconfig( TQWidget *parent, const char * ) {
return new KcmKontact( parent, "kcmkontact" );
}
}
diff --git a/kontact/src/prefs.kcfgc b/kontact/src/prefs.kcfgc
index 03eb7af75..3b94b5b70 100644
--- a/kontact/src/prefs.kcfgc
+++ b/kontact/src/prefs.kcfgc
@@ -6,7 +6,7 @@ Singleton=true
Mutators=true
#Inherits=KPimPrefs
#IncludeFiles=libtdepim/kpimprefs.h
-Visibility=KDE_EXPORT
+Visibility=TDE_EXPORT
MemberVariables=public
GlobalEnums=true
ItemAccessors=true