summaryrefslogtreecommitdiffstats
path: root/kontact/plugins/summary/kcmkontactsummary.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kontact/plugins/summary/kcmkontactsummary.cpp')
-rw-r--r--kontact/plugins/summary/kcmkontactsummary.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kontact/plugins/summary/kcmkontactsummary.cpp b/kontact/plugins/summary/kcmkontactsummary.cpp
index a2b5003b..156014ca 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() );