summaryrefslogtreecommitdiffstats
path: root/kplato/kptprojectdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kplato/kptprojectdialog.cpp')
-rw-r--r--kplato/kptprojectdialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kplato/kptprojectdialog.cpp b/kplato/kptprojectdialog.cpp
index 1b547629..0fe1a721 100644
--- a/kplato/kptprojectdialog.cpp
+++ b/kplato/kptprojectdialog.cpp
@@ -57,13 +57,13 @@ ProjectDialog::ProjectDialog(Project &p, TQWidget *parent, const char *name)
dia->namefield->setText(project.name());
dia->leaderfield->setText(project.leader());
- connect(dia, TQT_SIGNAL( obligatedFieldsFilled(bool) ), this, TQT_SLOT( enableButtonOK(bool) ));
- connect(dia, TQT_SIGNAL( schedulingTypeChanged(int) ), this, TQT_SLOT( slotSchedulingChanged(int) ));
+ connect(dia, TQ_SIGNAL( obligatedFieldsFilled(bool) ), this, TQ_SLOT( enableButtonOK(bool) ));
+ connect(dia, TQ_SIGNAL( schedulingTypeChanged(int) ), this, TQ_SLOT( slotSchedulingChanged(int) ));
slotSchedulingChanged(dia->schedulerType->currentItem());
dia->namefield->setFocus();
- connect(resourcesTab, TQT_SIGNAL( changed() ), dia, TQT_SLOT( slotCheckAllFieldsFilled() ));
+ connect(resourcesTab, TQ_SIGNAL( changed() ), dia, TQ_SLOT( slotCheckAllFieldsFilled() ));
}
@@ -118,10 +118,10 @@ void ProjectDialog::slotSchedulingChanged(int activated) {
}
ProjectDialogImpl::ProjectDialogImpl (TQWidget *parent) : ProjectDialogBase(parent) {
- connect (namefield, TQT_SIGNAL(textChanged( const TQString& )), this, TQT_SLOT(slotCheckAllFieldsFilled()) );
- connect (leaderfield, TQT_SIGNAL(textChanged( const TQString& )), this, TQT_SLOT(slotCheckAllFieldsFilled()) );
- connect (schedulerType, TQT_SIGNAL(activated( int )), this, TQT_SLOT(slotSchedulingChanged( int )) );
- connect (chooseLeader, TQT_SIGNAL(pressed()), this, TQT_SLOT(slotChooseLeader()));
+ connect (namefield, TQ_SIGNAL(textChanged( const TQString& )), this, TQ_SLOT(slotCheckAllFieldsFilled()) );
+ connect (leaderfield, TQ_SIGNAL(textChanged( const TQString& )), this, TQ_SLOT(slotCheckAllFieldsFilled()) );
+ connect (schedulerType, TQ_SIGNAL(activated( int )), this, TQ_SLOT(slotSchedulingChanged( int )) );
+ connect (chooseLeader, TQ_SIGNAL(pressed()), this, TQ_SLOT(slotChooseLeader()));
}
void ProjectDialogImpl::slotCheckAllFieldsFilled() {