summaryrefslogtreecommitdiffstats
path: root/kpilot/kpilot/todoEditor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kpilot/kpilot/todoEditor.cc')
-rw-r--r--kpilot/kpilot/todoEditor.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/kpilot/kpilot/todoEditor.cc b/kpilot/kpilot/todoEditor.cc
index 34a3b65d..d7017bb9 100644
--- a/kpilot/kpilot/todoEditor.cc
+++ b/kpilot/kpilot/todoEditor.cc
@@ -31,11 +31,11 @@
#include "options.h"
-#include <qcombobox.h>
-#include <qlayout.h>
-#include <qlabel.h>
-#include <qtextedit.h>
-#include <qcheckbox.h>
+#include <tqcombobox.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
+#include <tqtextedit.h>
+#include <tqcheckbox.h>
#include <kdatewidget.h>
@@ -45,7 +45,7 @@
TodoEditor::TodoEditor(PilotTodoEntry * p, struct ToDoAppInfo *appInfo,
- QWidget * parent, const char *name) :
+ TQWidget * parent, const char *name) :
KDialogBase(parent, name, false, i18n("To-do Editor"), Ok|Cancel),
fDeleteOnCancel(p == 0L),
fTodo(p),
@@ -57,8 +57,8 @@ TodoEditor::TodoEditor(PilotTodoEntry * p, struct ToDoAppInfo *appInfo,
setMainWidget(fWidget);
fillFields();
- connect(parent, SIGNAL(recordChanged(PilotTodoEntry *)),
- this, SLOT(updateRecord(PilotTodoEntry *)));
+ connect(parent, TQT_SIGNAL(recordChanged(PilotTodoEntry *)),
+ this, TQT_SLOT(updateRecord(PilotTodoEntry *)));
}