summaryrefslogtreecommitdiffstats
path: root/kmail/kcm_kmail.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/kcm_kmail.cpp')
-rw-r--r--kmail/kcm_kmail.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/kmail/kcm_kmail.cpp b/kmail/kcm_kmail.cpp
index 6cb28374..3ba43637 100644
--- a/kmail/kcm_kmail.cpp
+++ b/kmail/kcm_kmail.cpp
@@ -31,55 +31,55 @@
//----------------------------
extern "C"
{
- KDE_EXPORT KCModule *create_kmail_config_misc( TQWidget *tqparent, const char * )
+ KDE_EXPORT KCModule *create_kmail_config_misc( TQWidget *parent, const char * )
{
- MiscPage *page = new MiscPage( tqparent, "kcmkmail_config_misc" );
+ MiscPage *page = new MiscPage( parent, "kcmkmail_config_misc" );
return page;
}
}
extern "C"
{
- KDE_EXPORT KCModule *create_kmail_config_appearance( TQWidget *tqparent, const char * )
+ KDE_EXPORT KCModule *create_kmail_config_appearance( TQWidget *parent, const char * )
{
AppearancePage *page =
- new AppearancePage( tqparent, "kcmkmail_config_appearance" );
+ new AppearancePage( parent, "kcmkmail_config_appearance" );
return page;
}
}
extern "C"
{
- KDE_EXPORT KCModule *create_kmail_config_composer( TQWidget *tqparent, const char * )
+ KDE_EXPORT KCModule *create_kmail_config_composer( TQWidget *parent, const char * )
{
- ComposerPage *page = new ComposerPage( tqparent, "kcmkmail_config_composer" );
+ ComposerPage *page = new ComposerPage( parent, "kcmkmail_config_composer" );
return page;
}
}
extern "C"
{
- KDE_EXPORT KCModule *create_kmail_config_identity( TQWidget *tqparent, const char * )
+ KDE_EXPORT KCModule *create_kmail_config_identity( TQWidget *parent, const char * )
{
- IdentityPage *page = new IdentityPage( tqparent, "kcmkmail_config_identity" );
+ IdentityPage *page = new IdentityPage( parent, "kcmkmail_config_identity" );
return page;
}
}
extern "C"
{
- KDE_EXPORT KCModule *create_kmail_config_accounts( TQWidget *tqparent, const char * )
+ KDE_EXPORT KCModule *create_kmail_config_accounts( TQWidget *parent, const char * )
{
- AccountsPage *page = new AccountsPage( tqparent, "kcmkmail_config_accounts" );
+ AccountsPage *page = new AccountsPage( parent, "kcmkmail_config_accounts" );
return page;
}
}
extern "C"
{
- KDE_EXPORT KCModule *create_kmail_config_security( TQWidget *tqparent, const char * )
+ KDE_EXPORT KCModule *create_kmail_config_security( TQWidget *parent, const char * )
{
- SecurityPage *page = new SecurityPage( tqparent, "kcmkmail_config_security" );
+ SecurityPage *page = new SecurityPage( parent, "kcmkmail_config_security" );
return page;
}
}