summaryrefslogtreecommitdiffstats
path: root/kontact
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:46 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-06 11:17:04 +0900
commitd6705bac5da767ff271b66c0f01ff6ed6352515e (patch)
treea617f12381b078079df41f885e42af386439cea7 /kontact
parent8973dc76ab93ba7acb94478a37f480762a82f19d (diff)
downloadtdepim-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 '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 7317febc..a075c243 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 af7cbfa7..c0895741 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 945395c8..303babb3 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 bef34d47..d6a33963 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 690cbc50..20ba1a72 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 4c0945e7..7e2dd0a3 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 4a698ff8..929be9aa 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 f35cc2b4..f0b87414 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 591cb033..d400df31 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 b1d0b039..7c4b1928 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 03eb7af7..3b94b5b7 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