diff options
Diffstat (limited to 'kplato/kptprojectdialog.cc')
-rw-r--r-- | kplato/kptprojectdialog.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kplato/kptprojectdialog.cc b/kplato/kptprojectdialog.cc index add74c8e4..a45bddf29 100644 --- a/kplato/kptprojectdialog.cc +++ b/kplato/kptprojectdialog.cc @@ -44,8 +44,8 @@ namespace KPlato { -ProjectDialog::ProjectDialog(Project &p, TQWidget *tqparent, const char *name) - : KDialogBase( Swallow, i18n("Project Settings"), Ok|Cancel, Ok, tqparent, name, true, true), +ProjectDialog::ProjectDialog(Project &p, TQWidget *parent, const char *name) + : KDialogBase( Swallow, i18n("Project Settings"), Ok|Cancel, Ok, parent, name, true, true), project(p) { dia = new ProjectDialogImpl(this); @@ -117,7 +117,7 @@ void ProjectDialog::slotSchedulingChanged(int activated) { dia->lSchedulingExplain->setText(label); } -ProjectDialogImpl::ProjectDialogImpl (TQWidget *tqparent) : ProjectDialogBase(tqparent) { +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 )) ); |