diff options
Diffstat (limited to 'kplato/kptresourcesdialog.cc')
-rw-r--r-- | kplato/kptresourcesdialog.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kplato/kptresourcesdialog.cc b/kplato/kptresourcesdialog.cc index 967c2f2e5..784f8e4ee 100644 --- a/kplato/kptresourcesdialog.cc +++ b/kplato/kptresourcesdialog.cc @@ -17,7 +17,7 @@ * Boston, MA 02110-1301, USA. */ -#include <qvbox.h> +#include <tqvbox.h> #include <klocale.h> #include <kcommand.h> @@ -32,8 +32,8 @@ namespace KPlato { -ResourcesDialog::ResourcesDialog(Project &p, QWidget *parent, const char *name) - : KDialogBase( Swallow, i18n("Resources"), Ok|Cancel, Ok, parent, name, true, true), +ResourcesDialog::ResourcesDialog(Project &p, TQWidget *tqparent, const char *name) + : KDialogBase( Swallow, i18n("Resources"), Ok|Cancel, Ok, tqparent, name, true, true), project(p) { panel = new ResourcesPanel(this, &project); @@ -41,7 +41,7 @@ ResourcesDialog::ResourcesDialog(Project &p, QWidget *parent, const char *name) setMainWidget(panel); enableButtonOK(false); - connect(panel, SIGNAL(changed()), SLOT(slotChanged())); + connect(panel, TQT_SIGNAL(changed()), TQT_SLOT(slotChanged())); } @@ -57,7 +57,7 @@ void ResourcesDialog::slotOk() { KCommand *ResourcesDialog::buildCommand(Part *part) { KMacroCommand *m = 0; - QString c = i18n("Modify resources"); + TQString c = i18n("Modify resources"); KCommand *cmd = panel->buildCommand(part); if (cmd) { if (!m) m = new KMacroCommand(c); |