summaryrefslogtreecommitdiffstats
path: root/renamedlgplugins/audio/audio_plugin.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-19 11:52:34 -0600
committerTimothy Pearson <[email protected]>2011-12-19 11:52:34 -0600
commit75112ed8e227f656f98523b7ffdad5422d9a6f11 (patch)
tree23041ac1bbe364dcc39dbbd0e86ff6930494e036 /renamedlgplugins/audio/audio_plugin.cpp
parentb88830e9111dc4375bc1461c3f7b3e7b3e73f733 (diff)
downloadtdeaddons-75112ed8e227f656f98523b7ffdad5422d9a6f11.tar.gz
tdeaddons-75112ed8e227f656f98523b7ffdad5422d9a6f11.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'renamedlgplugins/audio/audio_plugin.cpp')
-rw-r--r--renamedlgplugins/audio/audio_plugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/renamedlgplugins/audio/audio_plugin.cpp b/renamedlgplugins/audio/audio_plugin.cpp
index 5aeeb49..8f51eb9 100644
--- a/renamedlgplugins/audio/audio_plugin.cpp
+++ b/renamedlgplugins/audio/audio_plugin.cpp
@@ -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"));