summaryrefslogtreecommitdiffstats
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-06 17:36:27 +0900
commit1fe043c85008f5af4ff6c0e3ce028bfecbcd9182 (patch)
tree82c29f4d9d1cb15006e86c2f6ed63b073c554ed4
parent157f75489048a95ab32acc0b3c6cd74f95bd6186 (diff)
downloadtdesdk-1fe043c85008f5af4ff6c0e3ce028bfecbcd9182.tar.gz
tdesdk-1fe043c85008f5af4ff6c0e3ce028bfecbcd9182.zip
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 10f886b2fa3fbe9397f6dcaf0db77f1e706b2356)
-rw-r--r--cervisia/cvsservice/cvsaskpass.cpp2
-rw-r--r--cervisia/cvsservice/cvsjob.h2
-rw-r--r--cervisia/cvsservice/cvsservice.h2
-rw-r--r--cervisia/cvsservice/main.cpp2
-rw-r--r--cervisia/cvsservice/repository.h2
-rw-r--r--cervisia/main.cpp2
-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
-rw-r--r--kbugbuster/tderesources/kcalresource_plugin.cpp2
-rw-r--r--kdeaccounts-plugin/kdeaccountsformat.cpp2
-rw-r--r--kompare/interfaces/kompareinterface.h2
-rw-r--r--kompare/komparenavtreepart/komparenavtreepart.cpp2
-rw-r--r--kspy/spy.cpp2
-rw-r--r--kuiviewer/quicreator.cpp2
-rw-r--r--tdeioslave/svn/ksvnd/ksvnd.cpp2
-rw-r--r--tdeioslave/svn/svn.cpp2
-rw-r--r--tdeunittest/runnergui.h2
-rw-r--r--umbrello/umbrello/plugin.h2
47 files changed, 66 insertions, 66 deletions
diff --git a/cervisia/cvsservice/cvsaskpass.cpp b/cervisia/cvsservice/cvsaskpass.cpp
index dbe80fe8..0b9551b6 100644
--- a/cervisia/cvsservice/cvsaskpass.cpp
+++ b/cervisia/cvsservice/cvsaskpass.cpp
@@ -35,7 +35,7 @@ static TDECmdLineOptions options[] =
};
-extern "C" KDE_EXPORT int kdemain(int argc, char** argv)
+extern "C" TDE_EXPORT int kdemain(int argc, char** argv)
{
TDEAboutData about("cvsaskpass", I18N_NOOP("cvsaskpass"), "0.1",
I18N_NOOP("ssh-askpass for the CVS DCOP Service"),
diff --git a/cervisia/cvsservice/cvsjob.h b/cervisia/cvsservice/cvsjob.h
index ef2e20e8..d7c127d1 100644
--- a/cervisia/cvsservice/cvsjob.h
+++ b/cervisia/cvsservice/cvsjob.h
@@ -29,7 +29,7 @@
class TDEProcess;
-class KDE_EXPORT CvsJob : public TQObject, public DCOPObject
+class TDE_EXPORT CvsJob : public TQObject, public DCOPObject
{
TQ_OBJECT
//
diff --git a/cervisia/cvsservice/cvsservice.h b/cervisia/cvsservice/cvsservice.h
index cfa5bce1..50884075 100644
--- a/cervisia/cvsservice/cvsservice.h
+++ b/cervisia/cvsservice/cvsservice.h
@@ -28,7 +28,7 @@
class TQString;
-class KDE_EXPORT CvsService : public DCOPObject
+class TDE_EXPORT CvsService : public DCOPObject
{
K_DCOP
diff --git a/cervisia/cvsservice/main.cpp b/cervisia/cvsservice/main.cpp
index 6e11f605..b6a51b6e 100644
--- a/cervisia/cvsservice/main.cpp
+++ b/cervisia/cvsservice/main.cpp
@@ -25,7 +25,7 @@
#include "cvsservice.h"
-extern "C" KDE_EXPORT int kdemain(int argc, char** argv)
+extern "C" TDE_EXPORT int kdemain(int argc, char** argv)
{
TDEAboutData about("cvsservice", I18N_NOOP("CVS DCOP service"), "0.1",
I18N_NOOP("DCOP service for CVS"), TDEAboutData::License_LGPL,
diff --git a/cervisia/cvsservice/repository.h b/cervisia/cvsservice/repository.h
index 45c32896..0e5ccd03 100644
--- a/cervisia/cvsservice/repository.h
+++ b/cervisia/cvsservice/repository.h
@@ -31,7 +31,7 @@ class TQString;
* Represents a local or remote cvs repository with
* its repository-specific configuration data.
*/
-class KDE_EXPORT Repository : public TQObject, public DCOPObject
+class TDE_EXPORT Repository : public TQObject, public DCOPObject
{
K_DCOP
TQ_OBJECT
diff --git a/cervisia/main.cpp b/cervisia/main.cpp
index 7c971cf9..0066c39a 100644
--- a/cervisia/main.cpp
+++ b/cervisia/main.cpp
@@ -137,7 +137,7 @@ static int ShowAnnotateDialog(const TQString& fileName)
}
-extern "C" KDE_EXPORT int kdemain(int argc, char **argv)
+extern "C" TDE_EXPORT int kdemain(int argc, char **argv)
{
static TDECmdLineOptions options[] = {
{ "+[directory]", I18N_NOOP("The sandbox to be loaded"), 0 },
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
diff --git a/kbugbuster/tderesources/kcalresource_plugin.cpp b/kbugbuster/tderesources/kcalresource_plugin.cpp
index d9f33ec9..fef50787 100644
--- a/kbugbuster/tderesources/kcalresource_plugin.cpp
+++ b/kbugbuster/tderesources/kcalresource_plugin.cpp
@@ -29,7 +29,7 @@ using namespace KCal;
extern "C"
{
- KDE_EXPORT void *init_kcal_bugzilla()
+ TDE_EXPORT void *init_kcal_bugzilla()
{
TDEGlobal::locale()->insertCatalogue( "kres_bugzilla" );
return new KRES::PluginFactory<KCalResource,KCalResourceConfig>();
diff --git a/kdeaccounts-plugin/kdeaccountsformat.cpp b/kdeaccounts-plugin/kdeaccountsformat.cpp
index 8c01307c..6c4403d1 100644
--- a/kdeaccounts-plugin/kdeaccountsformat.cpp
+++ b/kdeaccounts-plugin/kdeaccountsformat.cpp
@@ -9,7 +9,7 @@
extern "C"
{
- KDE_EXPORT TDEABC::FormatPlugin *format()
+ TDE_EXPORT TDEABC::FormatPlugin *format()
{
return new KDEAccountsFormat();
}
diff --git a/kompare/interfaces/kompareinterface.h b/kompare/interfaces/kompareinterface.h
index 06ab7a77..56c1f56d 100644
--- a/kompare/interfaces/kompareinterface.h
+++ b/kompare/interfaces/kompareinterface.h
@@ -13,7 +13,7 @@ class KURL;
class KompareInterfacePrivate;
-class KDE_EXPORT KompareInterface
+class TDE_EXPORT KompareInterface
{
public:
KompareInterface();
diff --git a/kompare/komparenavtreepart/komparenavtreepart.cpp b/kompare/komparenavtreepart/komparenavtreepart.cpp
index b9f1703e..d7637ab8 100644
--- a/kompare/komparenavtreepart/komparenavtreepart.cpp
+++ b/kompare/komparenavtreepart/komparenavtreepart.cpp
@@ -701,7 +701,7 @@ TDEInstance* KompareNavTreePartFactory::instance()
extern "C"
{
- KDE_EXPORT void* init_libkomparenavtreepart()
+ TDE_EXPORT void* init_libkomparenavtreepart()
{
return new KompareNavTreePartFactory;
}
diff --git a/kspy/spy.cpp b/kspy/spy.cpp
index a7d99e5d..3731ecab 100644
--- a/kspy/spy.cpp
+++ b/kspy/spy.cpp
@@ -34,7 +34,7 @@
extern "C"
{
- KDE_EXPORT void* init_libkspy()
+ TDE_EXPORT void* init_libkspy()
{
tqWarning( "KSpy: Initialising...\n" );
Spy *s = new Spy();
diff --git a/kuiviewer/quicreator.cpp b/kuiviewer/quicreator.cpp
index 0dc6da3e..77ebd758 100644
--- a/kuiviewer/quicreator.cpp
+++ b/kuiviewer/quicreator.cpp
@@ -34,7 +34,7 @@
extern "C"
{
- KDE_EXPORT ThumbCreator *new_creator()
+ TDE_EXPORT ThumbCreator *new_creator()
{
return new QUICreator;
}
diff --git a/tdeioslave/svn/ksvnd/ksvnd.cpp b/tdeioslave/svn/ksvnd/ksvnd.cpp
index 82e51bbb..f5ad3888 100644
--- a/tdeioslave/svn/ksvnd/ksvnd.cpp
+++ b/tdeioslave/svn/ksvnd/ksvnd.cpp
@@ -31,7 +31,7 @@
#include "commitdlg.h"
extern "C" {
- KDE_EXPORT KDEDModule *create_ksvnd(const TQCString &name) {
+ TDE_EXPORT KDEDModule *create_ksvnd(const TQCString &name) {
return new KSvnd(name);
}
}
diff --git a/tdeioslave/svn/svn.cpp b/tdeioslave/svn/svn.cpp
index a25abe36..92481417 100644
--- a/tdeioslave/svn/svn.cpp
+++ b/tdeioslave/svn/svn.cpp
@@ -1624,7 +1624,7 @@ void tdeio_svnProtocol::wc_resolve( const KURL& wc, bool recurse ) {
extern "C"
{
- KDE_EXPORT int kdemain(int argc, char **argv) {
+ TDE_EXPORT int kdemain(int argc, char **argv) {
TDEInstance instance( "tdeio_svn" );
kdDebug(7128) << "*** Starting tdeio_svn " << endl;
diff --git a/tdeunittest/runnergui.h b/tdeunittest/runnergui.h
index 146e7d30..28205c2a 100644
--- a/tdeunittest/runnergui.h
+++ b/tdeunittest/runnergui.h
@@ -41,7 +41,7 @@ namespace KUnitTest
{
class RunnerGUIDCOPImpl;
- class KDE_EXPORT RunnerGUI : public TQHBox
+ class TDE_EXPORT RunnerGUI : public TQHBox
{
TQ_OBJECT
diff --git a/umbrello/umbrello/plugin.h b/umbrello/umbrello/plugin.h
index 2b731f08..923c8a6c 100644
--- a/umbrello/umbrello/plugin.h
+++ b/umbrello/umbrello/plugin.h
@@ -47,7 +47,7 @@ class TDEConfig;
* as the parameter.
*/
#define UMBRELLO_EXPORT_PLUGIN_FACTORY(libname, factory) \
- extern "C" { KDE_EXPORT void *init_##libname() { return new factory(#libname); } }
+ extern "C" { TDE_EXPORT void *init_##libname() { return new factory(#libname); } }
namespace Umbrello
{