diff options
Diffstat (limited to 'kplato/kptprojectdialog.cc')
-rw-r--r-- | kplato/kptprojectdialog.cc | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kplato/kptprojectdialog.cc b/kplato/kptprojectdialog.cc index a45bddf2..4b9b8139 100644 --- a/kplato/kptprojectdialog.cc +++ b/kplato/kptprojectdialog.cc @@ -20,12 +20,12 @@ #include <tqpushbutton.h> #include <tqcombobox.h> #include <tqlabel.h> -#include <tqtextedit.h> +#include <textedit.h> #include <tqlineedit.h> #include <tqdatetimeedit.h> #include <tqdatetime.h> #include <tqtabwidget.h> -#include <tqtextbrowser.h> +#include <textbrowser.h> #include <kdatepicker.h> #include <klocale.h> @@ -91,24 +91,24 @@ void ProjectDialog::slotSchedulingChanged(int activated) { switch(activated) { // TODO please provide nice explenations on this. case 0: // ASAP - label = label.tqarg(i18n("As Soon as Possible")); - label = label.tqarg(i18n("Place all events at the earliest possible moment permitted in the schedule")); + label = label.arg(i18n("As Soon as Possible")); + label = label.arg(i18n("Place all events at the earliest possible moment permitted in the schedule")); break; case 1: // ALAP - label = label.tqarg(i18n("As Late as Possible")); - label = label.tqarg(i18n("Place all events at the last possible moment permitted in the schedule")); + label = label.arg(i18n("As Late as Possible")); + label = label.arg(i18n("Place all events at the last possible moment permitted in the schedule")); break; case 2: // Start not earlier then - label = label.tqarg(i18n("Start not Earlier then")); - label = label.tqarg(i18n("")); + label = label.arg(i18n("Start not Earlier then")); + label = label.arg(i18n("")); break; case 3: // Finish not later then - label = label.tqarg(i18n("Finish not Later then")); - label = label.tqarg(i18n("")); + label = label.arg(i18n("Finish not Later then")); + label = label.arg(i18n("")); break; case 4: // Must start on - label = label.tqarg(i18n("Must Start on")); - label = label.tqarg(i18n("")); + label = label.arg(i18n("Must Start on")); + label = label.arg(i18n("")); break; default: // error ... dia->lSchedulingExplain->setText(""); |