diff options
Diffstat (limited to 'kplato/kptmainprojectdialog.cc')
-rw-r--r-- | kplato/kptmainprojectdialog.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kplato/kptmainprojectdialog.cc b/kplato/kptmainprojectdialog.cc index 32d0a0f1b..71e2ba4e5 100644 --- a/kplato/kptmainprojectdialog.cc +++ b/kplato/kptmainprojectdialog.cc @@ -17,7 +17,7 @@ * Boston, MA 02110-1301, USA. */ -#include <qvbox.h> +#include <tqvbox.h> #include <klocale.h> #include <kcommand.h> @@ -31,16 +31,16 @@ namespace KPlato { -MainProjectDialog::MainProjectDialog(Project &p, QWidget *parent, const char *name) - : KDialogBase( Swallow, i18n("Project Settings"), Ok|Cancel, Ok, parent, name, true, true), +MainProjectDialog::MainProjectDialog(Project &p, TQWidget *tqparent, const char *name) + : KDialogBase( Swallow, i18n("Project Settings"), Ok|Cancel, Ok, tqparent, name, true, true), project(p) { panel = new MainProjectPanel(project, this); setMainWidget(panel); enableButtonOK(false); - resize( QSize(500, 410).expandedTo(minimumSizeHint())); - connect(panel, SIGNAL(obligatedFieldsFilled(bool)), SLOT(enableButtonOK(bool))); + resize( TQSize(500, 410).expandedTo(tqminimumSizeHint())); + connect(panel, TQT_SIGNAL(obligatedFieldsFilled(bool)), TQT_SLOT(enableButtonOK(bool))); } @@ -53,7 +53,7 @@ void MainProjectDialog::slotOk() { KCommand *MainProjectDialog::buildCommand(Part *part) { KMacroCommand *m = 0; - QString c = i18n("Modify main project"); + TQString c = i18n("Modify main project"); KCommand *cmd = panel->buildCommand(part); if (cmd) { if (!m) m = new KMacroCommand(c); |