diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | 36a36a5c1015aa0d03f4515c401e907ddb9d6291 (patch) | |
tree | 0212ba6d2c749043134005a41f2bd0379619d40f /kontact/plugins/summary/kcmkontactsummary.cpp | |
parent | 4c6f8d69e2d1501837affb472c4eb8fec4462240 (diff) | |
download | tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.tar.gz tdepim-36a36a5c1015aa0d03f4515c401e907ddb9d6291.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kontact/plugins/summary/kcmkontactsummary.cpp')
-rw-r--r-- | kontact/plugins/summary/kcmkontactsummary.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kontact/plugins/summary/kcmkontactsummary.cpp b/kontact/plugins/summary/kcmkontactsummary.cpp index a2b5003b3..156014ca0 100644 --- a/kontact/plugins/summary/kcmkontactsummary.cpp +++ b/kontact/plugins/summary/kcmkontactsummary.cpp @@ -43,16 +43,16 @@ extern "C" { - KDE_EXPORT KCModule *create_kontactsummary( TQWidget *tqparent, const char * ) { - return new KCMKontactSummary( tqparent, "kcmkontactsummary" ); + KDE_EXPORT KCModule *create_kontactsummary( TQWidget *parent, const char * ) { + return new KCMKontactSummary( parent, "kcmkontactsummary" ); } } class PluginItem : public TQCheckListItem { public: - PluginItem( KPluginInfo *info, KListView *tqparent ) - : TQCheckListItem( tqparent, TQString(), TQCheckListItem::CheckBox ), + PluginItem( KPluginInfo *info, KListView *parent ) + : TQCheckListItem( parent, TQString(), TQCheckListItem::CheckBox ), mInfo( info ) { TQPixmap pm = KGlobal::iconLoader()->loadIcon( mInfo->icon(), KIcon::Small ); @@ -78,8 +78,8 @@ class PluginItem : public TQCheckListItem KPluginInfo *mInfo; }; -PluginView::PluginView( TQWidget *tqparent, const char *name ) - : KListView( tqparent, name ) +PluginView::PluginView( TQWidget *parent, const char *name ) + : KListView( parent, name ) { addColumn( i18n( "Name" ) ); setAllColumnsShowFocus( true ); @@ -90,8 +90,8 @@ PluginView::~PluginView() { } -KCMKontactSummary::KCMKontactSummary( TQWidget *tqparent, const char *name ) - : KCModule( tqparent, name ) +KCMKontactSummary::KCMKontactSummary( TQWidget *parent, const char *name ) + : KCModule( parent, name ) { TQVBoxLayout *tqlayout = new TQVBoxLayout( this, 0, KDialog::spacingHint() ); |