From 67e29a054cfcb1b0d2fe6b0a316cf6b3eec087b7 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 13 Apr 2011 00:46:47 +0000 Subject: Initial conversion of kdepim to TQt This will probably require some tweaking before it will build under Qt4, however Qt3 builds are OK. Any alterations this commit makes to kdepim behaviour under Qt3 are unintentional and should be fixed. git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1227832 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kmail/kcm_kmail.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'kmail/kcm_kmail.cpp') diff --git a/kmail/kcm_kmail.cpp b/kmail/kcm_kmail.cpp index 3ba43637d..6cb283746 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 *parent, const char * ) + KDE_EXPORT KCModule *create_kmail_config_misc( TQWidget *tqparent, const char * ) { - MiscPage *page = new MiscPage( parent, "kcmkmail_config_misc" ); + MiscPage *page = new MiscPage( tqparent, "kcmkmail_config_misc" ); return page; } } extern "C" { - KDE_EXPORT KCModule *create_kmail_config_appearance( TQWidget *parent, const char * ) + KDE_EXPORT KCModule *create_kmail_config_appearance( TQWidget *tqparent, const char * ) { AppearancePage *page = - new AppearancePage( parent, "kcmkmail_config_appearance" ); + new AppearancePage( tqparent, "kcmkmail_config_appearance" ); return page; } } extern "C" { - KDE_EXPORT KCModule *create_kmail_config_composer( TQWidget *parent, const char * ) + KDE_EXPORT KCModule *create_kmail_config_composer( TQWidget *tqparent, const char * ) { - ComposerPage *page = new ComposerPage( parent, "kcmkmail_config_composer" ); + ComposerPage *page = new ComposerPage( tqparent, "kcmkmail_config_composer" ); return page; } } extern "C" { - KDE_EXPORT KCModule *create_kmail_config_identity( TQWidget *parent, const char * ) + KDE_EXPORT KCModule *create_kmail_config_identity( TQWidget *tqparent, const char * ) { - IdentityPage *page = new IdentityPage( parent, "kcmkmail_config_identity" ); + IdentityPage *page = new IdentityPage( tqparent, "kcmkmail_config_identity" ); return page; } } extern "C" { - KDE_EXPORT KCModule *create_kmail_config_accounts( TQWidget *parent, const char * ) + KDE_EXPORT KCModule *create_kmail_config_accounts( TQWidget *tqparent, const char * ) { - AccountsPage *page = new AccountsPage( parent, "kcmkmail_config_accounts" ); + AccountsPage *page = new AccountsPage( tqparent, "kcmkmail_config_accounts" ); return page; } } extern "C" { - KDE_EXPORT KCModule *create_kmail_config_security( TQWidget *parent, const char * ) + KDE_EXPORT KCModule *create_kmail_config_security( TQWidget *tqparent, const char * ) { - SecurityPage *page = new SecurityPage( parent, "kcmkmail_config_security" ); + SecurityPage *page = new SecurityPage( tqparent, "kcmkmail_config_security" ); return page; } } -- cgit v1.2.1