summaryrefslogtreecommitdiffstats
path: root/kpilot/todoEditor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kpilot/todoEditor.cc')
-rw-r--r--kpilot/todoEditor.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/kpilot/todoEditor.cc b/kpilot/todoEditor.cc
index d7017bb..9ba89f1 100644
--- a/kpilot/todoEditor.cc
+++ b/kpilot/todoEditor.cc
@@ -45,8 +45,8 @@
TodoEditor::TodoEditor(PilotTodoEntry * p, struct ToDoAppInfo *appInfo,
- TQWidget * parent, const char *name) :
- KDialogBase(parent, name, false, i18n("To-do Editor"), Ok|Cancel),
+ TQWidget * tqparent, const char *name) :
+ KDialogBase(tqparent, name, false, i18n("To-do Editor"), Ok|Cancel),
fDeleteOnCancel(p == 0L),
fTodo(p),
fAppInfo(appInfo)
@@ -57,7 +57,7 @@ TodoEditor::TodoEditor(PilotTodoEntry * p, struct ToDoAppInfo *appInfo,
setMainWidget(fWidget);
fillFields();
- connect(parent, TQT_SIGNAL(recordChanged(PilotTodoEntry *)),
+ connect(tqparent, TQT_SIGNAL(recordChanged(PilotTodoEntry *)),
this, TQT_SLOT(updateRecord(PilotTodoEntry *)));
}