summaryrefslogtreecommitdiffstats
path: root/kpilot/kpilot/todoEditor.cc
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kpilot/kpilot/todoEditor.cc
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 *)));
}