summaryrefslogtreecommitdiffstats
path: root/kbabel/common/editcmd.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:53 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:53 +0900
commit10f886b2fa3fbe9397f6dcaf0db77f1e706b2356 (patch)
tree5804a0c29ddb04aaee49c771fff433b8b5368836 /kbabel/common/editcmd.h
parent977c5266d3155a08424862bd40a3bde40c9e0d4a (diff)
downloadtdesdk-10f886b2fa3fbe9397f6dcaf0db77f1e706b2356.tar.gz
tdesdk-10f886b2fa3fbe9397f6dcaf0db77f1e706b2356.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kbabel/common/editcmd.h')
-rw-r--r--kbabel/common/editcmd.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kbabel/common/editcmd.h b/kbabel/common/editcmd.h
index 5dc1c536..9c7c8785 100644
--- a/kbabel/common/editcmd.h
+++ b/kbabel/common/editcmd.h
@@ -40,7 +40,7 @@
namespace KBabel
{
-class KDE_EXPORT EditCommand
+class TDE_EXPORT EditCommand
{
public:
enum Commands { Invalid, Begin, End, Insert, Delete };
@@ -64,7 +64,7 @@ private:
};
-class KDE_EXPORT BeginCommand : public EditCommand
+class TDE_EXPORT BeginCommand : public EditCommand
{
public:
BeginCommand( const int index, const Part part ) : EditCommand(index,part) {}
@@ -73,7 +73,7 @@ public:
};
-class KDE_EXPORT EndCommand : public EditCommand
+class TDE_EXPORT EndCommand : public EditCommand
{
public:
EndCommand( const int index, const Part part ) : EditCommand(index,part) {}
@@ -83,7 +83,7 @@ public:
-class KDE_EXPORT DelTextCmd : public EditCommand
+class TDE_EXPORT DelTextCmd : public EditCommand
{
public:
int offset;
@@ -97,7 +97,7 @@ public:
bool merge( EditCommand* other);
};
-class KDE_EXPORT InsTextCmd : public DelTextCmd
+class TDE_EXPORT InsTextCmd : public DelTextCmd
{
public: