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 | 625904bd3097f9749450428904ca14ff2531824d (patch) | |
tree | a45c43d5de71cb720078fa1272a4339815a919be /ktimer | |
parent | 6335dc55802871b5a43492f217b6edbb420204c4 (diff) | |
download | tdeutils-625904bd3097f9749450428904ca14ff2531824d.tar.gz tdeutils-625904bd3097f9749450428904ca14ff2531824d.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ktimer')
-rw-r--r-- | ktimer/ktimer.cpp | 16 | ||||
-rw-r--r-- | ktimer/ktimer.h | 4 |
2 files changed, 10 insertions, 10 deletions
diff --git a/ktimer/ktimer.cpp b/ktimer/ktimer.cpp index 36cc998..a387d87 100644 --- a/ktimer/ktimer.cpp +++ b/ktimer/ktimer.cpp @@ -39,15 +39,15 @@ class KTimerJobItem : public TQListViewItem { public: - KTimerJobItem( KTimerJob *job, TQListView *tqparent ) - : TQListViewItem( tqparent ) { + KTimerJobItem( KTimerJob *job, TQListView *parent ) + : TQListViewItem( parent ) { m_job = job; m_error = false; update(); }; - KTimerJobItem( KTimerJob *job, TQListView *tqparent, TQListViewItem *after ) - : TQListViewItem( tqparent, after ) { + KTimerJobItem( KTimerJob *job, TQListView *parent, TQListViewItem *after ) + : TQListViewItem( parent, after ) { m_job = job; m_error = false; update(); @@ -97,8 +97,8 @@ struct KTimerPrefPrivate TQPtrList<KTimerJob> jobs; }; -KTimerPref::KTimerPref( TQWidget *tqparent, const char *name ) - : PrefWidget( tqparent, name ) +KTimerPref::KTimerPref( TQWidget *parent, const char *name ) + : PrefWidget( parent, name ) { d = new KTimerPrefPrivate; @@ -306,8 +306,8 @@ struct KTimerJobPrivate { }; -KTimerJob::KTimerJob( TQObject *tqparent, const char *name ) - : TQObject( tqparent, name ) +KTimerJob::KTimerJob( TQObject *parent, const char *name ) + : TQObject( parent, name ) { d = new KTimerJobPrivate; diff --git a/ktimer/ktimer.h b/ktimer/ktimer.h index f1a2c69..5f8cb4f 100644 --- a/ktimer/ktimer.h +++ b/ktimer/ktimer.h @@ -32,7 +32,7 @@ class KTimerJob : public TQObject { TQ_OBJECT public: - KTimerJob( TQObject *tqparent=0, const char *name=0 ); + KTimerJob( TQObject *parent=0, const char *name=0 ); virtual ~KTimerJob(); enum States { Stopped, Paused, Started }; @@ -93,7 +93,7 @@ class KTimerPref : public PrefWidget Q_OBJECT TQ_OBJECT public: - KTimerPref( TQWidget *tqparent=0, const char *name = 0 ); + KTimerPref( TQWidget *parent=0, const char *name = 0 ); virtual ~KTimerPref(); protected slots: |