Remove no longer needed save methods in MPEG::File

This commit is contained in:
Lukáš Lalinský 2012-11-12 16:37:06 +01:00
parent 2a86da4df5
commit f2b56a5511
2 changed files with 1 additions and 35 deletions

View File

@ -178,16 +178,6 @@ bool MPEG::File::save()
return save(AllTags);
}
bool MPEG::File::save(int tags)
{
return save(tags, true);
}
bool MPEG::File::save(int tags, bool stripOthers)
{
return save(tags, stripOthers, 4);
}
bool MPEG::File::save(int tags, bool stripOthers, int id3v2Version)
{
if(tags == NoTags && stripOthers)

View File

@ -172,29 +172,6 @@ namespace TagLib {
*/
virtual bool save();
/*!
* Save the file. This will attempt to save all of the tag types that are
* specified by OR-ing together TagTypes values. The save() method above
* uses AllTags. This returns true if saving was successful.
*
* This strips all tags not included in the mask, but does not modify them
* in memory, so later calls to save() which make use of these tags will
* remain valid. This also strips empty tags.
*/
bool save(int tags);
/*!
* Save the file. This will attempt to save all of the tag types that are
* specified by OR-ing together TagTypes values. The save() method above
* uses AllTags. This returns true if saving was successful.
*
* If \a stripOthers is true this strips all tags not included in the mask,
* but does not modify them in memory, so later calls to save() which make
* use of these tags will remain valid. This also strips empty tags.
*/
// BIC: combine with the above method
bool save(int tags, bool stripOthers);
/*!
* Save the file. This will attempt to save all of the tag types that are
* specified by OR-ing together TagTypes values. The save() method above
@ -207,8 +184,7 @@ namespace TagLib {
* The \a id3v2Version parameter specifies the version of the saved
* ID3v2 tag. It can be either 4 or 3.
*/
// BIC: combine with the above method
bool save(int tags, bool stripOthers, int id3v2Version);
bool save(int tags, bool stripOthers = true, int id3v2Version = 4);
/*!
* Returns a pointer to the ID3v2 tag of the file.