From 3a2300ed7cee06b5b49c4bc71f38d5cee72171b5 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 06:08:18 +0000 Subject: 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 --- src/metadata/tagengine.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/metadata') diff --git a/src/metadata/tagengine.cpp b/src/metadata/tagengine.cpp index 6043e99..9f9626c 100755 --- a/src/metadata/tagengine.cpp +++ b/src/metadata/tagengine.cpp @@ -224,7 +224,7 @@ TagData* TagEngine::readTags( const TQString& file ) if( !disc.isEmpty() ) { - int i = disc.tqfind('/'); + int i = disc.find('/'); if( i != -1 ) // disc.right( i ).toInt() is total number of discs, we don't use this at the moment tagData->disc = disc.left( i ).toInt(); @@ -234,7 +234,7 @@ TagData* TagEngine::readTags( const TQString& file ) if( !track_gain.isEmpty() ) { - int i = track_gain.tqfind(' '); + int i = track_gain.find(' '); if( i != -1 ) tagData->track_gain = track_gain.left( i ).toFloat(); else @@ -243,7 +243,7 @@ TagData* TagEngine::readTags( const TQString& file ) if( !album_gain.isEmpty() ) { - int i = album_gain.tqfind(' '); + int i = album_gain.find(' '); if( i != -1 ) tagData->album_gain = album_gain.left( i ).toFloat(); else -- cgit v1.2.1