diff options
Diffstat (limited to 'kontact/plugins/newsticker/kcmkontactknt.cpp')
-rw-r--r-- | kontact/plugins/newsticker/kcmkontactknt.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kontact/plugins/newsticker/kcmkontactknt.cpp b/kontact/plugins/newsticker/kcmkontactknt.cpp index 63dc312e2..6795ffb5b 100644 --- a/kontact/plugins/newsticker/kcmkontactknt.cpp +++ b/kontact/plugins/newsticker/kcmkontactknt.cpp @@ -49,15 +49,15 @@ extern "C" { - KDE_EXPORT KCModule *create_kontactknt( TQWidget *tqparent, const char * ) + KDE_EXPORT KCModule *create_kontactknt( TQWidget *parent, const char * ) { - return new KCMKontactKNT( tqparent, "kcmkontactknt" ); + return new KCMKontactKNT( parent, "kcmkontactknt" ); } } -NewsEditDialog::NewsEditDialog( const TQString& title, const TQString& url, TQWidget *tqparent ) +NewsEditDialog::NewsEditDialog( const TQString& title, const TQString& url, TQWidget *parent ) : KDialogBase( Plain, i18n( "New News Feed" ), Ok | Cancel, - Ok, tqparent, 0, true, true ) + Ok, parent, 0, true, true ) { TQWidget *page = plainPage(); TQGridLayout *tqlayout = new TQGridLayout( page, 2, 3, marginHint(), @@ -106,14 +106,14 @@ TQString NewsEditDialog::url() const class NewsItem : public TQListViewItem { public: - NewsItem( TQListView *tqparent, const TQString& title, const TQString& url, bool custom ) - : TQListViewItem( tqparent ), mTitle( title ), mUrl( url ), mCustom( custom ) + NewsItem( TQListView *parent, const TQString& title, const TQString& url, bool custom ) + : TQListViewItem( parent ), mTitle( title ), mUrl( url ), mCustom( custom ) { setText( 0, mTitle ); } - NewsItem( TQListViewItem *tqparent, const TQString& title, const TQString& url, bool custom ) - : TQListViewItem( tqparent ), mTitle( title ), mUrl( url ), mCustom( custom ) + NewsItem( TQListViewItem *parent, const TQString& title, const TQString& url, bool custom ) + : TQListViewItem( parent ), mTitle( title ), mUrl( url ), mCustom( custom ) { setText( 0, mTitle ); } @@ -128,8 +128,8 @@ class NewsItem : public TQListViewItem bool mCustom; }; -KCMKontactKNT::KCMKontactKNT( TQWidget *tqparent, const char *name ) - : KCModule( tqparent, name ) +KCMKontactKNT::KCMKontactKNT( TQWidget *parent, const char *name ) + : KCModule( parent, name ) { initGUI(); |