diff options
Diffstat (limited to 'kbabel/common/editcmd.h')
-rw-r--r-- | kbabel/common/editcmd.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kbabel/common/editcmd.h b/kbabel/common/editcmd.h index 5dc1c536..feaf1fec 100644 --- a/kbabel/common/editcmd.h +++ b/kbabel/common/editcmd.h @@ -35,12 +35,12 @@ #include "itempart.h" #include <tqstring.h> -#include <kdemacros.h> +#include <tdemacros.h> 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: |