summaryrefslogtreecommitdiffstats
path: root/kontact/plugins/newsticker
diff options
context:
space:
mode:
Diffstat (limited to 'kontact/plugins/newsticker')
-rw-r--r--kontact/plugins/newsticker/kcmkontactknt.cpp20
-rw-r--r--kontact/plugins/newsticker/kcmkontactknt.h4
-rw-r--r--kontact/plugins/newsticker/summarywidget.cpp4
-rw-r--r--kontact/plugins/newsticker/summarywidget.h2
4 files changed, 15 insertions, 15 deletions
diff --git a/kontact/plugins/newsticker/kcmkontactknt.cpp b/kontact/plugins/newsticker/kcmkontactknt.cpp
index 63dc312e..6795ffb5 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();
diff --git a/kontact/plugins/newsticker/kcmkontactknt.h b/kontact/plugins/newsticker/kcmkontactknt.h
index 2ec21f86..7bb00c7e 100644
--- a/kontact/plugins/newsticker/kcmkontactknt.h
+++ b/kontact/plugins/newsticker/kcmkontactknt.h
@@ -41,7 +41,7 @@ class KCMKontactKNT : public KCModule
TQ_OBJECT
public:
- KCMKontactKNT( TQWidget *tqparent = 0, const char *name = 0 );
+ KCMKontactKNT( TQWidget *parent = 0, const char *name = 0 );
virtual void load();
virtual void save();
@@ -89,7 +89,7 @@ class NewsEditDialog : public KDialogBase
TQ_OBJECT
public:
- NewsEditDialog( const TQString&, const TQString&, TQWidget *tqparent );
+ NewsEditDialog( const TQString&, const TQString&, TQWidget *parent );
TQString title() const;
TQString url() const;
diff --git a/kontact/plugins/newsticker/summarywidget.cpp b/kontact/plugins/newsticker/summarywidget.cpp
index 3667d402..2ba0dfcf 100644
--- a/kontact/plugins/newsticker/summarywidget.cpp
+++ b/kontact/plugins/newsticker/summarywidget.cpp
@@ -41,8 +41,8 @@
#include "summarywidget.h"
-SummaryWidget::SummaryWidget( TQWidget *tqparent, const char *name )
- : Kontact::Summary( tqparent, name ),
+SummaryWidget::SummaryWidget( TQWidget *parent, const char *name )
+ : Kontact::Summary( parent, name ),
DCOPObject( "NewsTickerPlugin" ), mLayout( 0 ), mFeedCounter( 0 )
{
TQVBoxLayout *vlay = new TQVBoxLayout( this, 3, 3 );
diff --git a/kontact/plugins/newsticker/summarywidget.h b/kontact/plugins/newsticker/summarywidget.h
index 7f30ca26..4a7c5c45 100644
--- a/kontact/plugins/newsticker/summarywidget.h
+++ b/kontact/plugins/newsticker/summarywidget.h
@@ -60,7 +60,7 @@ class SummaryWidget : public Kontact::Summary, public DCOPObject
K_DCOP
public:
- SummaryWidget( TQWidget *tqparent, const char *name = 0 );
+ SummaryWidget( TQWidget *parent, const char *name = 0 );
int summaryHeight() const;
TQStringList configModules() const;