summaryrefslogtreecommitdiffstats
path: root/buildtools/autotools/removefiledlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/autotools/removefiledlg.cpp')
-rw-r--r--buildtools/autotools/removefiledlg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildtools/autotools/removefiledlg.cpp b/buildtools/autotools/removefiledlg.cpp
index e265a969..a650fd53 100644
--- a/buildtools/autotools/removefiledlg.cpp
+++ b/buildtools/autotools/removefiledlg.cpp
@@ -43,8 +43,8 @@ static bool fileListContains(const TQPtrList<FileItem> &list, const TQString &na
RemoveFileDialog::RemoveFileDialog(AutoProjectWidget *widget, AutoProjectPart* part, SubprojectItem *spitem,
TargetItem *item, const TQString &filename,
- TQWidget *parent, const char *name)
- : RemoveFileDlgBase(parent, name, true)
+ TQWidget *tqparent, const char *name)
+ : RemoveFileDlgBase(tqparent, name, true)
{
removeFromTargetsCheckBox = 0;
@@ -63,7 +63,7 @@ RemoveFileDialog::RemoveFileDialog(AutoProjectWidget *widget, AutoProjectPart* p
TQString joinedtargets = " *" + targets.join("\n *");
removeFromTargetsCheckBox->setText ( i18n ( "The file %1 is still used by the following targets:\n%2\n"
- "Remove it from all of them?").arg(filename).arg(joinedtargets) );
+ "Remove it from all of them?").tqarg(filename).tqarg(joinedtargets) );
setMinimumSize(TQSize(size().width(), size().height() + removeFromTargetsCheckBox->size().height()*2) );
}