summaryrefslogtreecommitdiffstats
path: root/kode
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 /kode
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 'kode')
-rw-r--r--kode/automakefile.h4
-rw-r--r--kode/class.h2
-rw-r--r--kode/code.h2
-rw-r--r--kode/enum.h2
-rw-r--r--kode/file.h2
-rw-r--r--kode/function.h2
-rw-r--r--kode/license.h2
-rw-r--r--kode/membervariable.h2
-rw-r--r--kode/printer.h2
-rw-r--r--kode/statemachine.h2
-rw-r--r--kode/style.h2
-rw-r--r--kode/typedef.h2
-rw-r--r--kode/variable.h2
13 files changed, 14 insertions, 14 deletions
diff --git a/kode/automakefile.h b/kode/automakefile.h
index 1a593732..25113bd4 100644
--- a/kode/automakefile.h
+++ b/kode/automakefile.h
@@ -30,10 +30,10 @@
namespace KODE {
-class KDE_EXPORT AutoMakefile
+class TDE_EXPORT AutoMakefile
{
public:
- class KDE_EXPORT Target
+ class TDE_EXPORT Target
{
public:
typedef TQValueList<Target> List;
diff --git a/kode/class.h b/kode/class.h
index aab15d27..7e8548c7 100644
--- a/kode/class.h
+++ b/kode/class.h
@@ -34,7 +34,7 @@
namespace KODE {
-class KDE_EXPORT Class
+class TDE_EXPORT Class
{
public:
typedef TQValueList<Class> List;
diff --git a/kode/code.h b/kode/code.h
index 2b1da631..d060b2f5 100644
--- a/kode/code.h
+++ b/kode/code.h
@@ -29,7 +29,7 @@
#include <kdemacros.h>
namespace KODE {
-class KDE_EXPORT Code
+class TDE_EXPORT Code
{
public:
Code();
diff --git a/kode/enum.h b/kode/enum.h
index d4566bba..f4f90f37 100644
--- a/kode/enum.h
+++ b/kode/enum.h
@@ -26,7 +26,7 @@
namespace KODE {
-class KDE_EXPORT Enum
+class TDE_EXPORT Enum
{
public:
typedef TQValueList<Enum> List;
diff --git a/kode/file.h b/kode/file.h
index 7a899154..c0d9d39c 100644
--- a/kode/file.h
+++ b/kode/file.h
@@ -32,7 +32,7 @@
namespace KODE {
-class KDE_EXPORT File
+class TDE_EXPORT File
{
public:
File();
diff --git a/kode/function.h b/kode/function.h
index 6d928f4f..f9cab7e2 100644
--- a/kode/function.h
+++ b/kode/function.h
@@ -30,7 +30,7 @@
namespace KODE {
-class KDE_EXPORT Function
+class TDE_EXPORT Function
{
public:
typedef TQValueList<Function> List;
diff --git a/kode/license.h b/kode/license.h
index e73be134..d5aa685d 100644
--- a/kode/license.h
+++ b/kode/license.h
@@ -26,7 +26,7 @@
namespace KODE {
-class KDE_EXPORT License
+class TDE_EXPORT License
{
public:
enum Type { GPL, LGPL };
diff --git a/kode/membervariable.h b/kode/membervariable.h
index f75ab0f1..6adc9ddb 100644
--- a/kode/membervariable.h
+++ b/kode/membervariable.h
@@ -29,7 +29,7 @@
namespace KODE {
-class KDE_EXPORT MemberVariable : public Variable
+class TDE_EXPORT MemberVariable : public Variable
{
public:
typedef TQValueList<MemberVariable> List;
diff --git a/kode/printer.h b/kode/printer.h
index ceb0f7a9..0f92608e 100644
--- a/kode/printer.h
+++ b/kode/printer.h
@@ -33,7 +33,7 @@
namespace KODE {
-class KDE_EXPORT Printer
+class TDE_EXPORT Printer
{
public:
Printer();
diff --git a/kode/statemachine.h b/kode/statemachine.h
index a3490592..c4e5f6a5 100644
--- a/kode/statemachine.h
+++ b/kode/statemachine.h
@@ -29,7 +29,7 @@
namespace KODE {
-class KDE_EXPORT StateMachine
+class TDE_EXPORT StateMachine
{
public:
StateMachine();
diff --git a/kode/style.h b/kode/style.h
index 42b5fe18..989cf0d1 100644
--- a/kode/style.h
+++ b/kode/style.h
@@ -31,7 +31,7 @@
namespace KODE {
-class KDE_EXPORT Style
+class TDE_EXPORT Style
{
public:
Style();
diff --git a/kode/typedef.h b/kode/typedef.h
index a985c5fb..7da8eb46 100644
--- a/kode/typedef.h
+++ b/kode/typedef.h
@@ -26,7 +26,7 @@
namespace KODE {
-class KDE_EXPORT Typedef
+class TDE_EXPORT Typedef
{
public:
typedef TQValueList<Typedef> List;
diff --git a/kode/variable.h b/kode/variable.h
index 252d7b40..87b87eeb 100644
--- a/kode/variable.h
+++ b/kode/variable.h
@@ -28,7 +28,7 @@
namespace KODE {
-class KDE_EXPORT Variable
+class TDE_EXPORT Variable
{
public:
typedef TQValueList<Variable> List;