diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:12 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-16 09:58:12 -0600 |
commit | 6b45a7b7b2a804ccb2d522eb9ba6423fedb59b8f (patch) | |
tree | a08b27e3f4fde1ed82a5f061a2725998e8012f93 /renamedlgplugins/audio/audio_plugin.cpp | |
parent | ca82971624269719d487c6f7980d7237f9420036 (diff) | |
download | tdeaddons-6b45a7b7b2a804ccb2d522eb9ba6423fedb59b8f.tar.gz tdeaddons-6b45a7b7b2a804ccb2d522eb9ba6423fedb59b8f.zip |
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit ca82971624269719d487c6f7980d7237f9420036.
Diffstat (limited to 'renamedlgplugins/audio/audio_plugin.cpp')
-rw-r--r-- | renamedlgplugins/audio/audio_plugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/renamedlgplugins/audio/audio_plugin.cpp b/renamedlgplugins/audio/audio_plugin.cpp index f71eb7b..5aeeb49 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 <layout.h> +#include <tqlayout.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").arg(dest); + sentence1 = i18n("An older file named '%1' already exists.\n").tqarg(dest); else if (mtimeDest == mtimeSrc) - sentence1 = i18n("A similar file named '%1' already exists.\n").arg(dest); + sentence1 = i18n("A similar file named '%1' already exists.\n").tqarg(dest); else - sentence1 = i18n("A newer file named '%1' already exists.\n").arg(dest); + sentence1 = i18n("A newer file named '%1' already exists.\n").tqarg(dest); label_head->setText(sentence1); label_src->setText(i18n("Source File")); label_dst->setText(i18n("Existing File")); |