diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 3a2300ed7cee06b5b49c4bc71f38d5cee72171b5 (patch) | |
tree | ebc2fc901d7584145d9c40de18d9e4931283360a /src/replaygain.cpp | |
parent | 633d093981e9e04c06921459694cd095cdf85c23 (diff) | |
download | soundkonverter-3a2300ed7cee06b5b49c4bc71f38d5cee72171b5.tar.gz soundkonverter-3a2300ed7cee06b5b49c4bc71f38d5cee72171b5.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/soundkonverter@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/replaygain.cpp')
-rwxr-xr-x | src/replaygain.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/replaygain.cpp b/src/replaygain.cpp index 3e6aabd..64ca44d 100755 --- a/src/replaygain.cpp +++ b/src/replaygain.cpp @@ -48,9 +48,9 @@ bool ReplayGain::apply( TQStringList files, const TQString& format, KProcess* pr } } -// if( plugin->replaygain.in_files.tqfind("%p") != -1 ) { +// if( plugin->replaygain.in_files.find("%p") != -1 ) { // TQString t_str = plugin->replaygain.in_files; -// t_str.tqreplace( "%p", param ); +// t_str.replace( "%p", param ); // param = plugin->replaygain.bin + " " + t_str; // } // else { @@ -58,7 +58,7 @@ bool ReplayGain::apply( TQStringList files, const TQString& format, KProcess* pr // } TQString t_str = plugin->replaygain.in_files; - t_str.tqreplace( "%p", param ); + t_str.replace( "%p", param ); param = config->binaries[plugin->replaygain.bin] + " " + t_str; // cosmetic surgery @@ -84,7 +84,7 @@ bool ReplayGain::apply( TQStringList files, const TQString& format, KProcess* pr *it = KURL::decode_string( *it ); } - param.tqreplace( "%i", "\""+files.join("\" \"")+"\"" ); + param.replace( "%i", "\""+files.join("\" \"")+"\"" ); logger->log( logID, " " + i18n("Executing") + ": `" + param + "'" ); proc->setPriority( config->data.general.priority ); |