diff options
Diffstat (limited to 'ktimer/ktimer.cpp')
-rw-r--r-- | ktimer/ktimer.cpp | 16 |
1 files changed, 8 insertions, 8 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; |