summaryrefslogtreecommitdiffstats
path: root/renamedlgplugins/audio/audio_plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'renamedlgplugins/audio/audio_plugin.cpp')
-rw-r--r--renamedlgplugins/audio/audio_plugin.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/renamedlgplugins/audio/audio_plugin.cpp b/renamedlgplugins/audio/audio_plugin.cpp
index 5aeeb49..f71eb7b 100644
--- a/renamedlgplugins/audio/audio_plugin.cpp
+++ b/renamedlgplugins/audio/audio_plugin.cpp
@@ -27,7 +27,7 @@
#include <tqwidget.h>
#include <tqstringlist.h>
#include <kio/global.h>
-#include <tqlayout.h>
+#include <layout.h>
#include <sys/types.h>
@@ -73,11 +73,11 @@ bool AudioPlugin::initialize( KIO::RenameDlg_Mode mode, const TQString &_src, co
TQString sentence1;
TQString dest = KURL::fromPathOrURL(_dest).pathOrURL();
if (mtimeDest < mtimeSrc)
- sentence1 = i18n("An older file named '%1' already exists.\n").tqarg(dest);
+ sentence1 = i18n("An older file named '%1' already exists.\n").arg(dest);
else if (mtimeDest == mtimeSrc)
- sentence1 = i18n("A similar file named '%1' already exists.\n").tqarg(dest);
+ sentence1 = i18n("A similar file named '%1' already exists.\n").arg(dest);
else
- sentence1 = i18n("A newer file named '%1' already exists.\n").tqarg(dest);
+ sentence1 = i18n("A newer file named '%1' already exists.\n").arg(dest);
label_head->setText(sentence1);
label_src->setText(i18n("Source File"));
label_dst->setText(i18n("Existing File"));