rename "remove()" to "strip()" to be consistent with MPEG::File

git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@768450 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
Scott Wheeler
2008-01-30 03:31:41 +00:00
parent adc7c9c841
commit 458b2b3335
6 changed files with 20 additions and 7 deletions

View File

@ -207,7 +207,7 @@ ID3v2::Tag *TrueAudio::File::ID3v2Tag(bool create)
return d->ID3v2Tag;
}
void TrueAudio::File::remove(int tags)
void TrueAudio::File::strip(int tags)
{
if(tags & ID3v1) {
delete d->ID3v1Tag;

View File

@ -160,7 +160,7 @@ namespace TagLib {
* as their memory will be freed.
* \note In order to make the removal permanent save() still needs to be called
*/
void remove(int tags = AllTags);
void strip(int tags = AllTags);
private:
File(const File &);