mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-15 10:33:59 +02:00
Don't keep reference to asfTag, never used
This commit is contained in:
@@ -23,9 +23,8 @@ namespace Tomahawk
|
||||
|
||||
ASFTag::ASFTag( TagLib::Tag *tag, TagLib::ASF::Tag *asfTag )
|
||||
: Tag( tag )
|
||||
, m_asfTag( asfTag )
|
||||
{
|
||||
TagLib::ASF::AttributeListMap map = m_asfTag->attributeListMap();
|
||||
TagLib::ASF::AttributeListMap map = asfTag->attributeListMap();
|
||||
for( TagLib::ASF::AttributeListMap::ConstIterator it = map.begin();
|
||||
it != map.end(); ++it )
|
||||
{
|
||||
|
@@ -29,9 +29,6 @@ class DLLEXPORT ASFTag : public Tag
|
||||
{
|
||||
public:
|
||||
ASFTag( TagLib::Tag *, TagLib::ASF::Tag * );
|
||||
|
||||
private:
|
||||
TagLib::ASF::Tag *m_asfTag;
|
||||
};
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user