mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-18 20:04:00 +02:00
Do not keep a reference to the internal tag, never used
This commit is contained in:
@@ -23,9 +23,8 @@ namespace Tomahawk
|
||||
|
||||
APETag::APETag( TagLib::Tag *tag, TagLib::APE::Tag *apeTag )
|
||||
: Tag( tag )
|
||||
, m_apeTag( apeTag )
|
||||
{
|
||||
TagLib::APE::ItemListMap map = m_apeTag->itemListMap();
|
||||
TagLib::APE::ItemListMap map = apeTag->itemListMap();
|
||||
for( TagLib::APE::ItemListMap::ConstIterator it = map.begin();
|
||||
it != map.end(); ++it )
|
||||
{
|
||||
|
@@ -29,9 +29,6 @@ class DLLEXPORT APETag : public Tag
|
||||
{
|
||||
public:
|
||||
APETag( TagLib::Tag *, TagLib::APE::Tag * );
|
||||
|
||||
private:
|
||||
TagLib::APE::Tag *m_apeTag;
|
||||
};
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user