diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:31 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:56:31 -0600 |
commit | c9cb4f487428aad5d8cda5e3a4b9ad87390d7e54 (patch) | |
tree | 1ee1912ac4bb966475f0db0f2a78678661b4b4a5 /kplato/kptprojectdialog.cc | |
parent | 94844816550ad672ccfcdc25659c625546239998 (diff) | |
download | koffice-c9cb4f487428aad5d8cda5e3a4b9ad87390d7e54.tar.gz koffice-c9cb4f487428aad5d8cda5e3a4b9ad87390d7e54.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 94844816550ad672ccfcdc25659c625546239998.
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 4b9b8139..a45bddf2 100644 --- a/kplato/kptprojectdialog.cc +++ b/kplato/kptprojectdialog.cc @@ -20,12 +20,12 @@ #include <tqpushbutton.h> #include <tqcombobox.h> #include <tqlabel.h> -#include <textedit.h> +#include <tqtextedit.h> #include <tqlineedit.h> #include <tqdatetimeedit.h> #include <tqdatetime.h> #include <tqtabwidget.h> -#include <textbrowser.h> +#include <tqtextbrowser.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.arg(i18n("As Soon as Possible")); - label = label.arg(i18n("Place all events at the earliest possible moment permitted in the schedule")); + label = label.tqarg(i18n("As Soon as Possible")); + label = label.tqarg(i18n("Place all events at the earliest possible moment permitted in the schedule")); break; case 1: // ALAP - label = label.arg(i18n("As Late as Possible")); - label = label.arg(i18n("Place all events at the last possible moment permitted in the schedule")); + label = label.tqarg(i18n("As Late as Possible")); + label = label.tqarg(i18n("Place all events at the last possible moment permitted in the schedule")); break; case 2: // Start not earlier then - label = label.arg(i18n("Start not Earlier then")); - label = label.arg(i18n("")); + label = label.tqarg(i18n("Start not Earlier then")); + label = label.tqarg(i18n("")); break; case 3: // Finish not later then - label = label.arg(i18n("Finish not Later then")); - label = label.arg(i18n("")); + label = label.tqarg(i18n("Finish not Later then")); + label = label.tqarg(i18n("")); break; case 4: // Must start on - label = label.arg(i18n("Must Start on")); - label = label.arg(i18n("")); + label = label.tqarg(i18n("Must Start on")); + label = label.tqarg(i18n("")); break; default: // error ... dia->lSchedulingExplain->setText(""); |