summaryrefslogtreecommitdiffstats
path: root/kiten
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:14 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-05-05 17:48:14 +0900
commitc322141e5ad478b3da9dfb1e3ec6bdf04932d10c (patch)
treeca319b81da28696398d530d66e5e6a3c13e00271 /kiten
parent9af65c91bedfb16b9b5428ff802326e632b53ba8 (diff)
downloadtdeedu-c322141e5ad478b3da9dfb1e3ec6bdf04932d10c.tar.gz
tdeedu-c322141e5ad478b3da9dfb1e3ec6bdf04932d10c.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kiten')
-rw-r--r--kiten/asyndeta.h2
-rw-r--r--kiten/deinf.h2
-rw-r--r--kiten/dict.h18
-rw-r--r--kiten/kiten.h2
-rw-r--r--kiten/rad.h6
-rw-r--r--kiten/widgets.h6
6 files changed, 18 insertions, 18 deletions
diff --git a/kiten/asyndeta.h b/kiten/asyndeta.h
index d4946e17..ae35900e 100644
--- a/kiten/asyndeta.h
+++ b/kiten/asyndeta.h
@@ -28,7 +28,7 @@ namespace Dict
class Index;
}
-class KDE_EXPORT Asyndeta
+class TDE_EXPORT Asyndeta
{
public:
// creates index
diff --git a/kiten/deinf.h b/kiten/deinf.h
index ca776289..98c7cb8e 100644
--- a/kiten/deinf.h
+++ b/kiten/deinf.h
@@ -34,7 +34,7 @@ struct Conjugation
unsigned int num;
};
-class KDE_EXPORT Index
+class TDE_EXPORT Index
{
public:
Index();
diff --git a/kiten/dict.h b/kiten/dict.h
index 0b3f04a2..25db6d0e 100644
--- a/kiten/dict.h
+++ b/kiten/dict.h
@@ -42,7 +42,7 @@ namespace Dict
enum TextType { Text_Kanji, Text_Kana, Text_Latin };
// returns the TextType of the first part of the text
-KDE_EXPORT TextType textType(const TQString &text);
+TDE_EXPORT TextType textType(const TQString &text);
// File needs to be able to give out Arrays based on its mmap'd data.
// But, we don't want the users of the arrays to have to remember to
@@ -106,7 +106,7 @@ private:
bool valid;
};
-class KDE_EXPORT Entry
+class TDE_EXPORT Entry
{
public:
// EDict ctor
@@ -161,7 +161,7 @@ struct SearchResult
enum SearchType { Search_Beginning, Search_FullWord, Search_Anywhere };
enum DictionaryType { Edict, Kanjidict };
-class KDE_EXPORT Index : public TQObject
+class TDE_EXPORT Index : public TQObject
{
TQ_OBJECT
@@ -193,12 +193,12 @@ private:
};
// lotsa helper functions
-KDE_EXPORT TQString prettyKanjiReading(TQStringList);
-KDE_EXPORT TQString prettyMeaning(TQStringList);
-KDE_EXPORT Entry parse(const TQString &);
-KDE_EXPORT Entry kanjiParse(const TQString &);
-KDE_EXPORT Dict::Entry firstEntry(Dict::SearchResult);
-KDE_EXPORT TQString firstEntryText(Dict::SearchResult);
+TDE_EXPORT TQString prettyKanjiReading(TQStringList);
+TDE_EXPORT TQString prettyMeaning(TQStringList);
+TDE_EXPORT Entry parse(const TQString &);
+TDE_EXPORT Entry kanjiParse(const TQString &);
+TDE_EXPORT Dict::Entry firstEntry(Dict::SearchResult);
+TDE_EXPORT TQString firstEntryText(Dict::SearchResult);
int eucStringCompare(const char *str1, const char *str2);
bool isEUC(unsigned char c);
diff --git a/kiten/kiten.h b/kiten/kiten.h
index dc71da38..728b0fee 100644
--- a/kiten/kiten.h
+++ b/kiten/kiten.h
@@ -38,7 +38,7 @@ class TDEListAction;
class Learn;
class ResultView;
-class KDE_EXPORT TopLevel : public TDEMainWindow
+class TDE_EXPORT TopLevel : public TDEMainWindow
{
TQ_OBJECT
diff --git a/kiten/rad.h b/kiten/rad.h
index dd956847..1ac7a477 100644
--- a/kiten/rad.h
+++ b/kiten/rad.h
@@ -33,7 +33,7 @@ class KPushButton;
class TDEListBox;
class TQButtonGroup;
-class KDE_EXPORT Radical
+class TDE_EXPORT Radical
{
public:
Radical(TQString = TQString(), unsigned int = 0);
@@ -50,7 +50,7 @@ class KDE_EXPORT Radical
TQString Kanji;
};
-class KDE_EXPORT Rad : public TQObject
+class TDE_EXPORT Rad : public TQObject
{
TQ_OBJECT
@@ -72,7 +72,7 @@ class KDE_EXPORT Rad : public TQObject
bool loaded;
};
-class KDE_EXPORT RadWidget : public TQWidget
+class TDE_EXPORT RadWidget : public TQWidget
{
TQ_OBJECT
diff --git a/kiten/widgets.h b/kiten/widgets.h
index d1643d08..2319b4d0 100644
--- a/kiten/widgets.h
+++ b/kiten/widgets.h
@@ -34,7 +34,7 @@ class KStatusBar;
#include "dict.h"
#include "rad.h"
-class KDE_EXPORT ResultView : public KTextBrowser
+class TDE_EXPORT ResultView : public KTextBrowser
{
TQ_OBJECT
@@ -64,7 +64,7 @@ class KDE_EXPORT ResultView : public KTextBrowser
bool basicMode;
};
-class KDE_EXPORT eEdit : public TDEMainWindow
+class TDE_EXPORT eEdit : public TDEMainWindow
{
TQ_OBJECT
@@ -90,7 +90,7 @@ class KDE_EXPORT eEdit : public TDEMainWindow
bool isMod;
};
-class KDE_EXPORT EditAction : public TDEAction
+class TDE_EXPORT EditAction : public TDEAction
{
TQ_OBJECT