diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-05 17:48:46 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-05-06 11:17:04 +0900 |
commit | d6705bac5da767ff271b66c0f01ff6ed6352515e (patch) | |
tree | a617f12381b078079df41f885e42af386439cea7 /kmail/kcm_kmail.cpp | |
parent | 8973dc76ab93ba7acb94478a37f480762a82f19d (diff) | |
download | tdepim-d6705bac5da767ff271b66c0f01ff6ed6352515e.tar.gz tdepim-d6705bac5da767ff271b66c0f01ff6ed6352515e.zip |
Replace KDE_[NO_]EXPORT with TDE_[NO_]EXPORT
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmail/kcm_kmail.cpp')
-rw-r--r-- | kmail/kcm_kmail.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/kcm_kmail.cpp b/kmail/kcm_kmail.cpp index 07dc1d729..19262ae5c 100644 --- a/kmail/kcm_kmail.cpp +++ b/kmail/kcm_kmail.cpp @@ -31,7 +31,7 @@ //---------------------------- extern "C" { - KDE_EXPORT TDECModule *create_kmail_config_misc( TQWidget *parent, const char * ) + TDE_EXPORT TDECModule *create_kmail_config_misc( TQWidget *parent, const char * ) { MiscPage *page = new MiscPage( parent, "kcmkmail_config_misc" ); return page; @@ -40,7 +40,7 @@ extern "C" extern "C" { - KDE_EXPORT TDECModule *create_kmail_config_appearance( TQWidget *parent, const char * ) + TDE_EXPORT TDECModule *create_kmail_config_appearance( TQWidget *parent, const char * ) { AppearancePage *page = new AppearancePage( parent, "kcmkmail_config_appearance" ); @@ -50,7 +50,7 @@ extern "C" extern "C" { - KDE_EXPORT TDECModule *create_kmail_config_composer( TQWidget *parent, const char * ) + TDE_EXPORT TDECModule *create_kmail_config_composer( TQWidget *parent, const char * ) { ComposerPage *page = new ComposerPage( parent, "kcmkmail_config_composer" ); return page; @@ -59,7 +59,7 @@ extern "C" extern "C" { - KDE_EXPORT TDECModule *create_kmail_config_identity( TQWidget *parent, const char * ) + TDE_EXPORT TDECModule *create_kmail_config_identity( TQWidget *parent, const char * ) { IdentityPage *page = new IdentityPage( parent, "kcmkmail_config_identity" ); return page; @@ -68,7 +68,7 @@ extern "C" extern "C" { - KDE_EXPORT TDECModule *create_kmail_config_accounts( TQWidget *parent, const char * ) + TDE_EXPORT TDECModule *create_kmail_config_accounts( TQWidget *parent, const char * ) { AccountsPage *page = new AccountsPage( parent, "kcmkmail_config_accounts" ); return page; @@ -77,7 +77,7 @@ extern "C" extern "C" { - KDE_EXPORT TDECModule *create_kmail_config_security( TQWidget *parent, const char * ) + TDE_EXPORT TDECModule *create_kmail_config_security( TQWidget *parent, const char * ) { SecurityPage *page = new SecurityPage( parent, "kcmkmail_config_security" ); return page; |