Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 39bbf0d3fc)
r14.1.x
Michele Calgaro 5 months ago
parent 65cf46861b
commit f7bca5cd75
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -36,7 +36,7 @@ namespace Kontact
* By default this means simply bringing the main window to the front, * By default this means simply bringing the main window to the front,
* but newInstance can be reimplemented. * but newInstance can be reimplemented.
*/ */
class KDE_EXPORT UniqueAppHandler : public DCOPObject class TDE_EXPORT UniqueAppHandler : public DCOPObject
{ {
K_DCOP K_DCOP
@ -86,7 +86,7 @@ template <class T> class UniqueAppHandlerFactory : public UniqueAppHandlerFactor
* Kontact takes over from there. * Kontact takes over from there.
* *
*/ */
class KDE_EXPORT UniqueAppWatcher : public TQObject class TDE_EXPORT UniqueAppWatcher : public TQObject
{ {
TQ_OBJECT TQ_OBJECT

@ -26,7 +26,7 @@
@author Sébastien Laoût <slaout@linux62.org> @author Sébastien Laoût <slaout@linux62.org>
*/ */
class KDE_EXPORT AboutData : public TDEAboutData class TDE_EXPORT AboutData : public TDEAboutData
{ {
public: public:
AboutData(); AboutData();

@ -48,7 +48,7 @@ class BackupDialog : public KDialogBase
/** /**
* @author Sébastien Laoût <slaout@linux62.org> * @author Sébastien Laoût <slaout@linux62.org>
*/ */
class KDE_EXPORT Backup class TDE_EXPORT Backup
{ {
public: public:
static void figureOutBinaryPath(const char *argv0, TQApplication &app); static void figureOutBinaryPath(const char *argv0, TQApplication &app);

@ -32,7 +32,7 @@ class ClickableLabel;
/** /**
@author Sébastien Laoût <slaout@linux62.org> @author Sébastien Laoût <slaout@linux62.org>
*/ */
class KDE_EXPORT BasketStatusBar : public TQObject class TDE_EXPORT BasketStatusBar : public TQObject
{ {
TQ_OBJECT TQ_OBJECT

@ -54,7 +54,7 @@ class Tag;
class State; class State;
class Note; class Note;
class KDE_EXPORT BNPView : public TQSplitter, virtual public BasketDcopInterface class TDE_EXPORT BNPView : public TQSplitter, virtual public BasketDcopInterface
{ {
TQ_OBJECT TQ_OBJECT

@ -38,7 +38,7 @@ class TDEAboutData;
* the .h files of variables he use. * the .h files of variables he use.
* @author S<EFBFBD>astien Laot * @author S<EFBFBD>astien Laot
*/ */
class KDE_EXPORT Global class TDE_EXPORT Global
{ {
private: private:
static TQString s_customSavesFolder; static TQString s_customSavesFolder;

@ -28,7 +28,7 @@
//---------------------------- //----------------------------
extern "C" extern "C"
{ {
KDE_EXPORT TDECModule *create_basket_config_general(TQWidget *parent, const char *) TDE_EXPORT TDECModule *create_basket_config_general(TQWidget *parent, const char *)
{ {
GeneralPage *page = new GeneralPage(parent, "kcmbasket_config_general"); GeneralPage *page = new GeneralPage(parent, "kcmbasket_config_general");
return page; return page;
@ -37,7 +37,7 @@ extern "C"
extern "C" extern "C"
{ {
KDE_EXPORT TDECModule *create_basket_config_baskets(TQWidget *parent, const char *) TDE_EXPORT TDECModule *create_basket_config_baskets(TQWidget *parent, const char *)
{ {
BasketsPage *page = new BasketsPage(parent, "kcmbasket_config_baskets"); BasketsPage *page = new BasketsPage(parent, "kcmbasket_config_baskets");
return page; return page;
@ -46,7 +46,7 @@ extern "C"
extern "C" extern "C"
{ {
KDE_EXPORT TDECModule *create_basket_config_new_notes(TQWidget *parent, const char *) TDE_EXPORT TDECModule *create_basket_config_new_notes(TQWidget *parent, const char *)
{ {
NewNotesPage *page = new NewNotesPage(parent, "kcmbasket_config_new_notes"); NewNotesPage *page = new NewNotesPage(parent, "kcmbasket_config_new_notes");
return page; return page;
@ -55,7 +55,7 @@ extern "C"
extern "C" extern "C"
{ {
KDE_EXPORT TDECModule *create_basket_config_notes_appearance(TQWidget *parent, const char *) TDE_EXPORT TDECModule *create_basket_config_notes_appearance(TQWidget *parent, const char *)
{ {
NotesAppearancePage *page = new NotesAppearancePage(parent, "kcmbasket_config_notes_appearance"); NotesAppearancePage *page = new NotesAppearancePage(parent, "kcmbasket_config_notes_appearance");
return page; return page;
@ -64,7 +64,7 @@ extern "C"
extern "C" extern "C"
{ {
KDE_EXPORT TDECModule *create_basket_config_apps(TQWidget *parent, const char *) TDE_EXPORT TDECModule *create_basket_config_apps(TQWidget *parent, const char *)
{ {
ApplicationsPage *page = new ApplicationsPage(parent, "kcmbasket_config_apps"); ApplicationsPage *page = new ApplicationsPage(parent, "kcmbasket_config_apps");
return page; return page;

@ -53,7 +53,7 @@ class LinkLookEditWidget;
class RunCommandRequester; class RunCommandRequester;
class IconSizeCombo; class IconSizeCombo;
class KDE_EXPORT GeneralPage : public TDECModule class TDE_EXPORT GeneralPage : public TDECModule
{ {
TQ_OBJECT TQ_OBJECT
@ -82,7 +82,7 @@ class KDE_EXPORT GeneralPage : public TDECModule
KIntNumInput *m_timeToShowOnMouseIn; KIntNumInput *m_timeToShowOnMouseIn;
}; };
class KDE_EXPORT BasketsPage : public TDECModule class TDE_EXPORT BasketsPage : public TDECModule
{ {
TQ_OBJECT TQ_OBJECT
@ -114,7 +114,7 @@ class KDE_EXPORT BasketsPage : public TDECModule
KIntNumInput *m_reLockTimeoutMinutes; KIntNumInput *m_reLockTimeoutMinutes;
}; };
class KDE_EXPORT NewNotesPage : public TDECModule class TDE_EXPORT NewNotesPage : public TDECModule
{ {
TQ_OBJECT TQ_OBJECT
@ -143,7 +143,7 @@ class KDE_EXPORT NewNotesPage : public TDECModule
TQCheckBox *m_viewSoundFileContent; TQCheckBox *m_viewSoundFileContent;
}; };
class KDE_EXPORT NotesAppearancePage : public TDECModule class TDE_EXPORT NotesAppearancePage : public TDECModule
{ {
TQ_OBJECT TQ_OBJECT
@ -164,7 +164,7 @@ class KDE_EXPORT NotesAppearancePage : public TDECModule
LinkLookEditWidget *m_launcherLook; LinkLookEditWidget *m_launcherLook;
}; };
class KDE_EXPORT ApplicationsPage : public TDECModule class TDE_EXPORT ApplicationsPage : public TDECModule
{ {
TQ_OBJECT TQ_OBJECT
@ -191,7 +191,7 @@ class KDE_EXPORT ApplicationsPage : public TDECModule
/** Handle all global variables (to avoid lot of extern declarations) /** Handle all global variables (to avoid lot of extern declarations)
* @author S<EFBFBD>astien Laot * @author S<EFBFBD>astien Laot
*/ */
class KDE_EXPORT Settings // FIXME: Distaptch new config events ? class TDE_EXPORT Settings // FIXME: Distaptch new config events ?
{ {
protected: protected:
/** Main window */ /** Main window */

@ -29,7 +29,7 @@ class MainWindow;
* hopefuly integrated in KDE 3.4 * hopefuly integrated in KDE 3.4
* @author S<EFBFBD>astien Laot * @author S<EFBFBD>astien Laot
*/ */
class KDE_EXPORT KSystemTray2 : public KSystemTray class TDE_EXPORT KSystemTray2 : public KSystemTray
{ {
TQ_OBJECT TQ_OBJECT

Loading…
Cancel
Save