summaryrefslogtreecommitdiffstats
path: root/kplato/kpttaskdialog.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kplato/kpttaskdialog.cc')
-rw-r--r--kplato/kpttaskdialog.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/kplato/kpttaskdialog.cc b/kplato/kpttaskdialog.cc
index 36ab20225..1db88030a 100644
--- a/kplato/kpttaskdialog.cc
+++ b/kplato/kpttaskdialog.cc
@@ -26,16 +26,16 @@
#include <klocale.h>
#include <kcommand.h>
-#include <qvbox.h>
+#include <tqvbox.h>
#include <kdebug.h>
namespace KPlato
{
-TaskDialog::TaskDialog(Task &task, Accounts &accounts, StandardWorktime *workTime, bool baseline, QWidget *p)
+TaskDialog::TaskDialog(Task &task, Accounts &accounts, StandardWorktime *workTime, bool baseline, TQWidget *p)
: KDialogBase(Tabbed, i18n("Task Settings"), Ok|Cancel, Ok, p, "Task Settings Dialog", true, true)
{
- QVBox *page;
+ TQVBox *page;
// Create all the tabs.
page = addVBoxPage(i18n("&General"));
@@ -50,9 +50,9 @@ TaskDialog::TaskDialog(Task &task, Accounts &accounts, StandardWorktime *workTim
// Set the state of all the child widgets.
enableButtonOK(false);
- connect(m_generalTab, SIGNAL( obligatedFieldsFilled(bool) ), this, SLOT( enableButtonOK(bool) ));
- connect(m_resourcesTab, SIGNAL( changed() ), m_generalTab, SLOT( checkAllFieldsFilled() ));
- connect(m_costTab, SIGNAL( changed() ), m_generalTab, SLOT( checkAllFieldsFilled() ));
+ connect(m_generalTab, TQT_SIGNAL( obligatedFieldsFilled(bool) ), this, TQT_SLOT( enableButtonOK(bool) ));
+ connect(m_resourcesTab, TQT_SIGNAL( changed() ), m_generalTab, TQT_SLOT( checkAllFieldsFilled() ));
+ connect(m_costTab, TQT_SIGNAL( changed() ), m_generalTab, TQT_SLOT( checkAllFieldsFilled() ));
}