summaryrefslogtreecommitdiffstats
path: root/ktimer
diff options
context:
space:
mode:
Diffstat (limited to 'ktimer')
-rw-r--r--ktimer/ktimer.cpp16
-rw-r--r--ktimer/ktimer.h4
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: