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/newsticker | |
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/newsticker')
-rw-r--r-- | kontact/plugins/newsticker/kcmkontactknt.cpp | 20 | ||||
-rw-r--r-- | kontact/plugins/newsticker/kcmkontactknt.h | 4 | ||||
-rw-r--r-- | kontact/plugins/newsticker/summarywidget.cpp | 4 | ||||
-rw-r--r-- | kontact/plugins/newsticker/summarywidget.h | 2 |
4 files changed, 15 insertions, 15 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(); diff --git a/kontact/plugins/newsticker/kcmkontactknt.h b/kontact/plugins/newsticker/kcmkontactknt.h index 2ec21f863..7bb00c7e8 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 3667d402c..2ba0dfcfa 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 7f30ca267..4a7c5c45f 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; |