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/specialdates | |
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/specialdates')
-rw-r--r-- | kontact/plugins/specialdates/kcmsdsummary.cpp | 8 | ||||
-rw-r--r-- | kontact/plugins/specialdates/kcmsdsummary.h | 2 | ||||
-rw-r--r-- | kontact/plugins/specialdates/sdsummarywidget.cpp | 4 | ||||
-rw-r--r-- | kontact/plugins/specialdates/sdsummarywidget.h | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/kontact/plugins/specialdates/kcmsdsummary.cpp b/kontact/plugins/specialdates/kcmsdsummary.cpp index 3c3420820..b659cdb45 100644 --- a/kontact/plugins/specialdates/kcmsdsummary.cpp +++ b/kontact/plugins/specialdates/kcmsdsummary.cpp @@ -43,14 +43,14 @@ extern "C" { - KDE_EXPORT KCModule *create_sdsummary( TQWidget *tqparent, const char * ) + KDE_EXPORT KCModule *create_sdsummary( TQWidget *parent, const char * ) { - return new KCMSDSummary( tqparent, "kcmsdsummary" ); + return new KCMSDSummary( parent, "kcmsdsummary" ); } } -KCMSDSummary::KCMSDSummary( TQWidget *tqparent, const char *name ) - : KCModule( tqparent, name ) +KCMSDSummary::KCMSDSummary( TQWidget *parent, const char *name ) + : KCModule( parent, name ) { initGUI(); diff --git a/kontact/plugins/specialdates/kcmsdsummary.h b/kontact/plugins/specialdates/kcmsdsummary.h index 4369797f4..7e18f2195 100644 --- a/kontact/plugins/specialdates/kcmsdsummary.h +++ b/kontact/plugins/specialdates/kcmsdsummary.h @@ -39,7 +39,7 @@ class KCMSDSummary : public KCModule TQ_OBJECT public: - KCMSDSummary( TQWidget *tqparent = 0, const char *name = 0 ); + KCMSDSummary( TQWidget *parent = 0, const char *name = 0 ); virtual void load(); virtual void save(); diff --git a/kontact/plugins/specialdates/sdsummarywidget.cpp b/kontact/plugins/specialdates/sdsummarywidget.cpp index 3a5f8b3a7..537e4ec0d 100644 --- a/kontact/plugins/specialdates/sdsummarywidget.cpp +++ b/kontact/plugins/specialdates/sdsummarywidget.cpp @@ -77,9 +77,9 @@ class SDEntry } }; -SDSummaryWidget::SDSummaryWidget( Kontact::Plugin *plugin, TQWidget *tqparent, +SDSummaryWidget::SDSummaryWidget( Kontact::Plugin *plugin, TQWidget *parent, const char *name ) - : Kontact::Summary( tqparent, name ), mPlugin( plugin ), mCalendar( 0 ), mHolidays( 0 ) + : Kontact::Summary( parent, name ), mPlugin( plugin ), mCalendar( 0 ), mHolidays( 0 ) { // Create the Summary Layout TQVBoxLayout *mainLayout = new TQVBoxLayout( this, 3, 3 ); diff --git a/kontact/plugins/specialdates/sdsummarywidget.h b/kontact/plugins/specialdates/sdsummarywidget.h index 939ca5bb9..00f45a5d8 100644 --- a/kontact/plugins/specialdates/sdsummarywidget.h +++ b/kontact/plugins/specialdates/sdsummarywidget.h @@ -46,7 +46,7 @@ class SDSummaryWidget : public Kontact::Summary TQ_OBJECT public: - SDSummaryWidget( Kontact::Plugin *plugin, TQWidget *tqparent, + SDSummaryWidget( Kontact::Plugin *plugin, TQWidget *parent, const char *name = 0 ); TQStringList configModules() const; |