diff options
Diffstat (limited to 'kontact/src/kcmkontact.cpp')
-rw-r--r-- | kontact/src/kcmkontact.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kontact/src/kcmkontact.cpp b/kontact/src/kcmkontact.cpp index fbdd4a045..03c59d65c 100644 --- a/kontact/src/kcmkontact.cpp +++ b/kontact/src/kcmkontact.cpp @@ -42,16 +42,16 @@ extern "C" { - KDE_EXPORT KCModule *create_kontactconfig( TQWidget *tqparent, const char * ) { - return new KcmKontact( tqparent, "kcmkontact" ); + KDE_EXPORT KCModule *create_kontactconfig( TQWidget *parent, const char * ) { + return new KcmKontact( parent, "kcmkontact" ); } } class PluginItem : public TQListViewItem { public: - PluginItem( TQListView *tqparent, const KService::Ptr &ptr ) - : TQListViewItem( tqparent, ptr->name(), ptr->comment(), ptr->library() ), + PluginItem( TQListView *parent, const KService::Ptr &ptr ) + : TQListViewItem( parent, ptr->name(), ptr->comment(), ptr->library() ), mPtr( ptr ) { } @@ -65,8 +65,8 @@ class PluginItem : public TQListViewItem KService::Ptr mPtr; }; -KcmKontact::KcmKontact( TQWidget *tqparent, const char *name ) - : KPrefsModule( Kontact::Prefs::self(), tqparent, name ) +KcmKontact::KcmKontact( TQWidget *parent, const char *name ) + : KPrefsModule( Kontact::Prefs::self(), parent, name ) { TQBoxLayout *topLayout = new TQVBoxLayout( this ); TQBoxLayout *pluginStartupLayout = new TQHBoxLayout( topLayout ); @@ -100,10 +100,10 @@ const KAboutData* KcmKontact::aboutData() const } -PluginSelection::PluginSelection( KConfigSkeleton::ItemString *item, TQWidget *tqparent ) +PluginSelection::PluginSelection( KConfigSkeleton::ItemString *item, TQWidget *parent ) { mItem = item; - mPluginCombo = new TQComboBox( tqparent ); + mPluginCombo = new TQComboBox( parent ); connect( mPluginCombo, TQT_SIGNAL( activated( int ) ), TQT_SIGNAL( changed() ) ); } |