summaryrefslogtreecommitdiffstats
path: root/kbabel
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
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')
-rw-r--r--kbabel/addons/preview/pothumbcreator.cpp2
-rw-r--r--kbabel/common/catalog.h2
-rw-r--r--kbabel/common/catalogfileplugin.h4
-rw-r--r--kbabel/common/catalogitem.h2
-rw-r--r--kbabel/common/catalogsettings.h16
-rw-r--r--kbabel/common/editcmd.h10
-rw-r--r--kbabel/common/kbmailer.h2
-rw-r--r--kbabel/common/kbproject.h2
-rw-r--r--kbabel/common/kbprojectmanager.h2
-rw-r--r--kbabel/common/msgfmt.h2
-rw-r--r--kbabel/common/poinfo.h2
-rw-r--r--kbabel/common/projectsettings.h4
-rw-r--r--kbabel/common/regexpextractor.h4
-rw-r--r--kbabel/common/tagextractor.h2
-rw-r--r--kbabel/commonui/context.h2
-rw-r--r--kbabel/commonui/finddialog.h4
-rw-r--r--kbabel/commonui/projectpref.h2
-rw-r--r--kbabel/commonui/projectprefwidgets.h2
-rw-r--r--kbabel/commonui/projectwizard.h2
-rw-r--r--kbabel/commonui/roughtransdlg.h2
-rw-r--r--kbabel/commonui/toolaction.h2
-rw-r--r--kbabel/commonui/toolselectionwidget.h2
-rw-r--r--kbabel/kbabeldict/dictchooser.h2
-rw-r--r--kbabel/kbabeldict/dictionarymenu.h2
-rw-r--r--kbabel/kbabeldict/kbabeldictbox.h2
-rw-r--r--kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.cpp2
-rw-r--r--kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.cpp2
-rw-r--r--kbabel/kbabeldict/modules/poauxiliary/pa_factory.cpp2
-rw-r--r--kbabel/kbabeldict/modules/pocompendium/pc_factory.cpp2
-rw-r--r--kbabel/kbabeldict/modules/tmx/pc_factory.cpp2
-rw-r--r--kbabel/kbabeldict/searchengine.h10
31 files changed, 50 insertions, 50 deletions
diff --git a/kbabel/addons/preview/pothumbcreator.cpp b/kbabel/addons/preview/pothumbcreator.cpp
index 8efd135f..30cf62a7 100644
--- a/kbabel/addons/preview/pothumbcreator.cpp
+++ b/kbabel/addons/preview/pothumbcreator.cpp
@@ -50,7 +50,7 @@ using namespace KBabel;
extern "C"
{
- KDE_EXPORT ThumbCreator *new_creator()
+ TDE_EXPORT ThumbCreator *new_creator()
{
return new PoThumbCreator;
}
diff --git a/kbabel/common/catalog.h b/kbabel/common/catalog.h
index f5c37309..06d641eb 100644
--- a/kbabel/common/catalog.h
+++ b/kbabel/common/catalog.h
@@ -107,7 +107,7 @@ struct DiffEntry
* @short Class, that represents a translation catalog(po-file)
* @author Matthias Kiefer <matthias.kiefer@gmx.de>
*/
-class KDE_EXPORT Catalog : public TQObject
+class TDE_EXPORT Catalog : public TQObject
{
TQ_OBJECT
diff --git a/kbabel/common/catalogfileplugin.h b/kbabel/common/catalogfileplugin.h
index c6dd1575..a41449c1 100644
--- a/kbabel/common/catalogfileplugin.h
+++ b/kbabel/common/catalogfileplugin.h
@@ -79,7 +79,7 @@ enum ConversionStatus {
* @short Base class for Catalog import plugins
* @author Stanislav Visnovsky <visnovsky@kde.org>
*/
-class KDE_EXPORT CatalogImportPlugin: public TQObject
+class TDE_EXPORT CatalogImportPlugin: public TQObject
{
TQ_OBJECT
@@ -175,7 +175,7 @@ private:
* @short Base class for Catalog export plugins
* @author Stanislav Visnovsky <visnovsky@kde.org>
*/
-class KDE_EXPORT CatalogExportPlugin: public TQObject
+class TDE_EXPORT CatalogExportPlugin: public TQObject
{
TQ_OBJECT
diff --git a/kbabel/common/catalogitem.h b/kbabel/common/catalogitem.h
index bb02b1d8..6f2beba6 100644
--- a/kbabel/common/catalogitem.h
+++ b/kbabel/common/catalogitem.h
@@ -60,7 +60,7 @@ class CatalogItemPrivate;
* @short Class, representing an entry in a catalog
* @author Matthias Kiefer <matthias.kiefer@gmx.de>
*/
-class KDE_EXPORT CatalogItem
+class TDE_EXPORT CatalogItem
{
public:
diff --git a/kbabel/common/catalogsettings.h b/kbabel/common/catalogsettings.h
index 552f88c5..cede4ab2 100644
--- a/kbabel/common/catalogsettings.h
+++ b/kbabel/common/catalogsettings.h
@@ -45,7 +45,7 @@ class TQStringList;
namespace KBabel
{
-struct KDE_EXPORT SaveSettings
+struct TDE_EXPORT SaveSettings
{
bool autoUpdate;
bool updateLastTranslator;
@@ -74,7 +74,7 @@ struct KDE_EXPORT SaveSettings
int autoSaveDelay;
};
-struct KDE_EXPORT IdentitySettings
+struct TDE_EXPORT IdentitySettings
{
TQString authorName;
TQString authorLocalizedName;
@@ -98,7 +98,7 @@ struct KDE_EXPORT IdentitySettings
};
-struct KDE_EXPORT MiscSettings
+struct TDE_EXPORT MiscSettings
{
/**
* The char, that marks keyboard accelerators.
@@ -144,13 +144,13 @@ struct TagSettings
TQStringList argExpressions;
};
-KDE_EXPORT TQString charsetString(const int encoding);
-KDE_EXPORT TQString charsetString(const TQTextCodec *codec);
-KDE_EXPORT TQString GNUPluralForms(const TQString& lang);
+TDE_EXPORT TQString charsetString(const int encoding);
+TDE_EXPORT TQString charsetString(const TQTextCodec *codec);
+TDE_EXPORT TQString GNUPluralForms(const TQString& lang);
namespace Defaults
{
- class KDE_EXPORT Identity
+ class TDE_EXPORT Identity
{
public:
static TQString authorName();
@@ -161,7 +161,7 @@ namespace Defaults
static TQString timezone();
};
- class KDE_EXPORT Tag
+ class TDE_EXPORT Tag
{
public:
static TQStringList tagExpressions();
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:
diff --git a/kbabel/common/kbmailer.h b/kbabel/common/kbmailer.h
index fe1cfe89..4274347d 100644
--- a/kbabel/common/kbmailer.h
+++ b/kbabel/common/kbmailer.h
@@ -56,7 +56,7 @@ namespace KBabel
*
* @internal
*/
-class KDE_EXPORT KBabelMailer
+class TDE_EXPORT KBabelMailer
{
public:
/**
diff --git a/kbabel/common/kbproject.h b/kbabel/common/kbproject.h
index f4983ab5..aa29df1a 100644
--- a/kbabel/common/kbproject.h
+++ b/kbabel/common/kbproject.h
@@ -43,7 +43,7 @@ namespace KBabel
{
class ProjectSettingsBase;
- class KDE_EXPORT Project : public TQObject, public TDEShared
+ class TDE_EXPORT Project : public TQObject, public TDEShared
{
TQ_OBJECT
diff --git a/kbabel/common/kbprojectmanager.h b/kbabel/common/kbprojectmanager.h
index 40ec5884..51ab2d3e 100644
--- a/kbabel/common/kbprojectmanager.h
+++ b/kbabel/common/kbprojectmanager.h
@@ -42,7 +42,7 @@
namespace KBabel
{
- class KDE_EXPORT ProjectManager
+ class TDE_EXPORT ProjectManager
{
public:
static Project::Ptr open( const TQString& file );
diff --git a/kbabel/common/msgfmt.h b/kbabel/common/msgfmt.h
index 42e28a60..8058d948 100644
--- a/kbabel/common/msgfmt.h
+++ b/kbabel/common/msgfmt.h
@@ -42,7 +42,7 @@ class TQString;
namespace KBabel
{
-class KDE_EXPORT Msgfmt : private TQObject
+class TDE_EXPORT Msgfmt : private TQObject
{
TQ_OBJECT
diff --git a/kbabel/common/poinfo.h b/kbabel/common/poinfo.h
index 70ba652a..775e2968 100644
--- a/kbabel/common/poinfo.h
+++ b/kbabel/common/poinfo.h
@@ -57,7 +57,7 @@ class FindOptions;
/**
* PO-file information class, with transparent caching of information.
*/
-class KDE_EXPORT PoInfo
+class TDE_EXPORT PoInfo
{
public:
int total;
diff --git a/kbabel/common/projectsettings.h b/kbabel/common/projectsettings.h
index 556088dd..c8b379ec 100644
--- a/kbabel/common/projectsettings.h
+++ b/kbabel/common/projectsettings.h
@@ -117,7 +117,7 @@ struct SourceContextSettings
*/
namespace Defaults
{
- class KDE_EXPORT Spellcheck
+ class TDE_EXPORT Spellcheck
{
public:
static TQString ignoreURL();
@@ -130,7 +130,7 @@ namespace Defaults
static KSpellConfig* defaultsettings;
};
- class KDE_EXPORT CatalogManager
+ class TDE_EXPORT CatalogManager
{
public:
static TQString ignoreURL();
diff --git a/kbabel/common/regexpextractor.h b/kbabel/common/regexpextractor.h
index 75b6e0d3..6c59266e 100644
--- a/kbabel/common/regexpextractor.h
+++ b/kbabel/common/regexpextractor.h
@@ -44,7 +44,7 @@
namespace KBabel
{
-struct KDE_EXPORT MatchedEntryInfo{
+struct TDE_EXPORT MatchedEntryInfo{
uint index;
TQString extracted;
};
@@ -54,7 +54,7 @@ struct KDE_EXPORT MatchedEntryInfo{
* class to extract entries based on regexps from a string
* @author Andrea Rizzi <rizzi@kde.org>
*/
-class KDE_EXPORT RegExpExtractor
+class TDE_EXPORT RegExpExtractor
{
public:
diff --git a/kbabel/common/tagextractor.h b/kbabel/common/tagextractor.h
index d6018f37..bf178a47 100644
--- a/kbabel/common/tagextractor.h
+++ b/kbabel/common/tagextractor.h
@@ -43,7 +43,7 @@ namespace KBabel
* class to extract tags from a string
* @author Andrea Rizzi <rizzi@kde.org>
*/
-class KDE_EXPORT TagExtractor : public RegExpExtractor
+class TDE_EXPORT TagExtractor : public RegExpExtractor
{
public:
diff --git a/kbabel/commonui/context.h b/kbabel/commonui/context.h
index 50bd1b24..02b06cc7 100644
--- a/kbabel/commonui/context.h
+++ b/kbabel/commonui/context.h
@@ -74,7 +74,7 @@ struct ContextInfo
* @note It requires a KPart implementing KTextEditor interface with selections.
* @author Stanislav Visnovsky <visnovsky@kde.org>
*/
-class KDE_EXPORT SourceContext : public TQWidget
+class TDE_EXPORT SourceContext : public TQWidget
{
TQ_OBJECT
diff --git a/kbabel/commonui/finddialog.h b/kbabel/commonui/finddialog.h
index b146e470..2044b155 100644
--- a/kbabel/commonui/finddialog.h
+++ b/kbabel/commonui/finddialog.h
@@ -44,7 +44,7 @@ class KComboBox;
#include "findoptions.h"
-class KDE_EXPORT FindDialog : public KDialogBase
+class TDE_EXPORT FindDialog : public KDialogBase
{
TQ_OBJECT
@@ -120,7 +120,7 @@ private:
bool _replaceDlg;
};
-class KDE_EXPORT ReplaceDialog : public KDialogBase
+class TDE_EXPORT ReplaceDialog : public KDialogBase
{
TQ_OBJECT
diff --git a/kbabel/commonui/projectpref.h b/kbabel/commonui/projectpref.h
index b7f571e3..44767b47 100644
--- a/kbabel/commonui/projectpref.h
+++ b/kbabel/commonui/projectpref.h
@@ -55,7 +55,7 @@ class DiffPreferences;
namespace KBabel {
-class KDE_EXPORT ProjectDialog : public TDEConfigDialog
+class TDE_EXPORT ProjectDialog : public TDEConfigDialog
{
TQ_OBJECT
diff --git a/kbabel/commonui/projectprefwidgets.h b/kbabel/commonui/projectprefwidgets.h
index b5ccf7d0..1b523b6c 100644
--- a/kbabel/commonui/projectprefwidgets.h
+++ b/kbabel/commonui/projectprefwidgets.h
@@ -62,7 +62,7 @@ class KURLRequester;
struct ModuleInfo;
-class KDE_EXPORT SavePreferences : public KTabCtl
+class TDE_EXPORT SavePreferences : public KTabCtl
{
TQ_OBJECT
diff --git a/kbabel/commonui/projectwizard.h b/kbabel/commonui/projectwizard.h
index cc2e3c9d..c0e07fe1 100644
--- a/kbabel/commonui/projectwizard.h
+++ b/kbabel/commonui/projectwizard.h
@@ -45,7 +45,7 @@ class ProjectStep2;
namespace KBabel {
-class KDE_EXPORT ProjectWizard : public KWizard
+class TDE_EXPORT ProjectWizard : public KWizard
{
TQ_OBJECT
diff --git a/kbabel/commonui/roughtransdlg.h b/kbabel/commonui/roughtransdlg.h
index 8c51d614..f18110c2 100644
--- a/kbabel/commonui/roughtransdlg.h
+++ b/kbabel/commonui/roughtransdlg.h
@@ -50,7 +50,7 @@ class TQHButtonGroup;
class TQRadioButton;
class TQVBox;
-class KDE_EXPORT RoughTransDlg : public KDialogBase
+class TDE_EXPORT RoughTransDlg : public KDialogBase
{
TQ_OBJECT
diff --git a/kbabel/commonui/toolaction.h b/kbabel/commonui/toolaction.h
index de0f0227..de0fb688 100644
--- a/kbabel/commonui/toolaction.h
+++ b/kbabel/commonui/toolaction.h
@@ -39,7 +39,7 @@
class TDEShortcut;
class TDEActionCollection;
-class KDE_EXPORT ToolAction : public TDEAction
+class TDE_EXPORT ToolAction : public TDEAction
{
TQ_OBJECT
diff --git a/kbabel/commonui/toolselectionwidget.h b/kbabel/commonui/toolselectionwidget.h
index 8d11628f..62bbc056 100644
--- a/kbabel/commonui/toolselectionwidget.h
+++ b/kbabel/commonui/toolselectionwidget.h
@@ -37,7 +37,7 @@
class KDataToolInfo;
-class KDE_EXPORT ToolSelectionWidget : public TDEActionSelector
+class TDE_EXPORT ToolSelectionWidget : public TDEActionSelector
{
TQ_OBJECT
diff --git a/kbabel/kbabeldict/dictchooser.h b/kbabel/kbabeldict/dictchooser.h
index 5bdc685a..d775412c 100644
--- a/kbabel/kbabeldict/dictchooser.h
+++ b/kbabel/kbabeldict/dictchooser.h
@@ -47,7 +47,7 @@ class TQPushButton;
class TQListBoxItem;
-class KDE_EXPORT DictChooser : public TQWidget
+class TDE_EXPORT DictChooser : public TQWidget
{
TQ_OBJECT
diff --git a/kbabel/kbabeldict/dictionarymenu.h b/kbabel/kbabeldict/dictionarymenu.h
index 62e216e0..2b730b1f 100644
--- a/kbabel/kbabeldict/dictionarymenu.h
+++ b/kbabel/kbabeldict/dictionarymenu.h
@@ -43,7 +43,7 @@ class TQSignalMapper;
class TDEPopupMenu;
class TDEActionCollection;
-class KDE_EXPORT DictionaryMenu : public TQObject
+class TDE_EXPORT DictionaryMenu : public TQObject
{
TQ_OBJECT
diff --git a/kbabel/kbabeldict/kbabeldictbox.h b/kbabel/kbabeldict/kbabeldictbox.h
index 5e506793..859df4af 100644
--- a/kbabel/kbabeldict/kbabeldictbox.h
+++ b/kbabel/kbabeldict/kbabeldictbox.h
@@ -60,7 +60,7 @@ struct ModuleInfo
};
-class KDE_EXPORT KBabelDictBox : public TQWidget, virtual public KBabelDictIFace
+class TDE_EXPORT KBabelDictBox : public TQWidget, virtual public KBabelDictIFace
{
TQ_OBJECT
diff --git a/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.cpp b/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.cpp
index 2273a9c4..de8f678c 100644
--- a/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.cpp
+++ b/kbabel/kbabeldict/modules/dbsearchengine/dbse_factory.cpp
@@ -10,7 +10,7 @@
extern "C"
{
- KDE_EXPORT void *init_kbabeldict_dbsearchengine()
+ TDE_EXPORT void *init_kbabeldict_dbsearchengine()
{
return new DbSeFactory;
}
diff --git a/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.cpp b/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.cpp
index ad2aa0dd..6276c7e4 100644
--- a/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.cpp
+++ b/kbabel/kbabeldict/modules/dbsearchengine2/dbse2_factory.cpp
@@ -10,7 +10,7 @@
extern "C"
{
- KDE_EXPORT void *init_kbabeldict_dbsearchengine2()
+ TDE_EXPORT void *init_kbabeldict_dbsearchengine2()
// void *init_libdbsearchengine2()
{
return new DbSe2Factory;
diff --git a/kbabel/kbabeldict/modules/poauxiliary/pa_factory.cpp b/kbabel/kbabeldict/modules/poauxiliary/pa_factory.cpp
index 8d706b99..8d2940d4 100644
--- a/kbabel/kbabeldict/modules/poauxiliary/pa_factory.cpp
+++ b/kbabel/kbabeldict/modules/poauxiliary/pa_factory.cpp
@@ -43,7 +43,7 @@
extern "C"
{
- KDE_EXPORT void *init_kbabeldict_poauxiliary()
+ TDE_EXPORT void *init_kbabeldict_poauxiliary()
{
return new PaFactory;
}
diff --git a/kbabel/kbabeldict/modules/pocompendium/pc_factory.cpp b/kbabel/kbabeldict/modules/pocompendium/pc_factory.cpp
index 936a5a5a..862dbf2f 100644
--- a/kbabel/kbabeldict/modules/pocompendium/pc_factory.cpp
+++ b/kbabel/kbabeldict/modules/pocompendium/pc_factory.cpp
@@ -43,7 +43,7 @@
extern "C"
{
- KDE_EXPORT void *init_kbabeldict_pocompendium()
+ TDE_EXPORT void *init_kbabeldict_pocompendium()
{
return new PcFactory;
}
diff --git a/kbabel/kbabeldict/modules/tmx/pc_factory.cpp b/kbabel/kbabeldict/modules/tmx/pc_factory.cpp
index 6a522d4c..78850366 100644
--- a/kbabel/kbabeldict/modules/tmx/pc_factory.cpp
+++ b/kbabel/kbabeldict/modules/tmx/pc_factory.cpp
@@ -43,7 +43,7 @@
extern "C"
{
- KDE_EXPORT void *init_kbabeldict_tmxcompendium()
+ TDE_EXPORT void *init_kbabeldict_tmxcompendium()
{
return new PcFactory;
}
diff --git a/kbabel/kbabeldict/searchengine.h b/kbabel/kbabeldict/searchengine.h
index c04640ce..729e0644 100644
--- a/kbabel/kbabeldict/searchengine.h
+++ b/kbabel/kbabeldict/searchengine.h
@@ -48,7 +48,7 @@
* Information, that is not available in a specific implementation of
* the SearchEngine, should be left empty.
*/
-class KDE_EXPORT TranslationInfo
+class TDE_EXPORT TranslationInfo
{
public:
/**
@@ -107,7 +107,7 @@ public:
* plus additional information where it was found,
* the date and time of the last change, the translator, etc.
*/
-class KDE_EXPORT SearchResult
+class TDE_EXPORT SearchResult
{
public:
SearchResult();
@@ -162,7 +162,7 @@ public:
/**
*
*/
-class KDE_EXPORT SearchFilter
+class TDE_EXPORT SearchFilter
{
public:
SearchFilter() :
@@ -241,7 +241,7 @@ private:
* necessary function. The widget should not be bigger than 400x400.
* If you need more space, you maybe want to use a tabbed widget.
*/
-class KDE_EXPORT PrefWidget : public TQWidget
+class TDE_EXPORT PrefWidget : public TQWidget
{
TQ_OBJECT
@@ -266,7 +266,7 @@ public slots:
};
-class KDE_EXPORT SearchEngine : public TQObject
+class TDE_EXPORT SearchEngine : public TQObject
{
TQ_OBJECT