summaryrefslogtreecommitdiffstats
path: root/kcron/ktlistvars.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcron/ktlistvars.cpp')
-rw-r--r--kcron/ktlistvars.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kcron/ktlistvars.cpp b/kcron/ktlistvars.cpp
index 64d43a1..ec9894a 100644
--- a/kcron/ktlistvars.cpp
+++ b/kcron/ktlistvars.cpp
@@ -25,14 +25,14 @@
#include "ktvariable.h"
#include "ktprint.h"
-KTListVars::KTListVars(KTListItem* parent, CTCron* _ctcron) :
- KTListItem(parent, 0, _ctcron)
+KTListVars::KTListVars(KTListItem* tqparent, CTCron* _ctcron) :
+ KTListItem(tqparent, 0, _ctcron)
{
refresh();
}
-KTListVars::KTListVars(TQListView* parent, CTCron* _ctcron) :
- KTListItem(parent, 0, _ctcron)
+KTListVars::KTListVars(TQListView* tqparent, CTCron* _ctcron) :
+ KTListItem(tqparent, 0, _ctcron)
{
refresh();
}
@@ -46,7 +46,7 @@ void KTListVars::create()
if (tempvar->dirty())
{
getCTCron()->variable.push_back(tempvar);
- new KTListVar(this, getCTCron(), tempvar); // Qt will clean up
+ new KTListVar(this, getCTCron(), tempvar); // TQt will clean up
}
else
{
@@ -73,7 +73,7 @@ void KTListVars::print(KTPrint& printer) const
printer.setFont(stnd);
- //firstChild() does not return null if there are no children, therefore
+ //firstChild() does not return null if there are no tqchildren, therefore
//we need to check the validation of the pointer without terminating
//the application. This maybe a bug in QT 1.44