Fix the same bug that I fixed in MPEG last week -- allow the lib user to

specify the ID3v2FrameFactory in the FLAC::File construstor.


git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@302629 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
Scott Wheeler
2004-04-10 15:50:17 +00:00
parent 92289b8df9
commit 2227d2004b
3 changed files with 26 additions and 3 deletions

View File

@ -315,7 +315,7 @@ ID3v2::Tag *MPEG::File::ID3v2Tag(bool create)
// no ID3v2 tag exists and we've been asked to create one
d->ID3v2Tag = new ID3v2::Tag();
d->ID3v2Tag = new ID3v2::Tag;
return d->ID3v2Tag;
}