summaryrefslogtreecommitdiffstats
path: root/amarok/src/equalizersetup.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit1dbf3ff1cbb6d82a451bc319301bf38816c2c232 (patch)
tree3b5b9c88a3b91163735d364681b930369e039e69 /amarok/src/equalizersetup.cpp
parent54e817557b3e95bc4b93fd7daa26b808c021515e (diff)
downloadamarok-1dbf3ff1cbb6d82a451bc319301bf38816c2c232.tar.gz
amarok-1dbf3ff1cbb6d82a451bc319301bf38816c2c232.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/amarok@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'amarok/src/equalizersetup.cpp')
-rw-r--r--amarok/src/equalizersetup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/amarok/src/equalizersetup.cpp b/amarok/src/equalizersetup.cpp
index 199cb389..56a4bd62 100644
--- a/amarok/src/equalizersetup.cpp
+++ b/amarok/src/equalizersetup.cpp
@@ -341,7 +341,7 @@ EqualizerSetup::editPresets()
TQString newTitle = currentTitle;
// Check if the selected item was renamed
- if ( presets.tqfind( currentTitle ) == presets.end() || currentGains != presets[ currentTitle ] ) {
+ if ( presets.find( currentTitle ) == presets.end() || currentGains != presets[ currentTitle ] ) {
// Find the new name
TQMap< TQString, TQValueList<int> >::Iterator end = presets.end();
@@ -369,7 +369,7 @@ EqualizerSetup::addPreset()
if (ok) {
// Check if the new preset title exists
- if ( m_presets.tqfind( title ) != m_presets.end() ) {
+ if ( m_presets.find( title ) != m_presets.end() ) {
int button = KMessageBox::warningYesNo( this, i18n( "A preset with the name %1 already exists. Overwrite?" ).tqarg( title ) );
if ( button != KMessageBox::Yes )