1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-05 05:37:29 +02:00

Don't keep reference to internal tag, never used

This commit is contained in:
Uwe L. Korn
2014-11-07 15:48:56 +01:00
parent 9f62ca3548
commit 45a5fe09e7

View File

@@ -24,9 +24,8 @@ namespace Tomahawk
ID3v2Tag::ID3v2Tag( TagLib::Tag *tag, TagLib::ID3v2::Tag *id3v2Tag ) ID3v2Tag::ID3v2Tag( TagLib::Tag *tag, TagLib::ID3v2::Tag *id3v2Tag )
: Tag( tag ) : Tag( tag )
, m_id3v2Tag( id3v2Tag )
{ {
TagLib::ID3v2::FrameList fList = m_id3v2Tag->frameList(); TagLib::ID3v2::FrameList fList = id3v2Tag->frameList();
for( TagLib::ID3v2::FrameList::ConstIterator it = fList.begin(); for( TagLib::ID3v2::FrameList::ConstIterator it = fList.begin();
it != fList.end(); ++it ) it != fList.end(); ++it )
{ {