summaryrefslogtreecommitdiffstats
path: root/kcron/ktlisttask.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcron/ktlisttask.cpp')
-rw-r--r--kcron/ktlisttask.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kcron/ktlisttask.cpp b/kcron/ktlisttask.cpp
index 28329ed..17a1378 100644
--- a/kcron/ktlisttask.cpp
+++ b/kcron/ktlisttask.cpp
@@ -18,14 +18,14 @@
#include "kttask.h"
#include "ktprint.h"
-KTListTask::KTListTask(KTListItem* tqparent,
+KTListTask::KTListTask(KTListItem* parent,
CTCron* _ctcron, CTTask* _cttask) :
- KTListItem(tqparent, 0, _ctcron),
+ KTListItem(parent, 0, _ctcron),
cttask(_cttask)
{
refresh();
- tqparent->setOpen(true);
+ parent->setOpen(true);
}
void KTListTask::refresh()
@@ -61,7 +61,7 @@ void KTListTask::edit()
{
KTTask(cttask,i18n("Modify Task")).exec();
refresh();
- tqparent()->sortChildItems(1, true);
+ parent()->sortChildItems(1, true);
}
CTTask* KTListTask::getCTTask() const