mirror of
https://github.com/taglib/taglib.git
synced 2025-06-03 17:18:11 -04:00
Resolve ambiguous File symbol in apetag.cpp
This commit is contained in:
parent
5081e3cf4f
commit
c22791318c
@ -48,7 +48,7 @@ class APE::Tag::TagPrivate
|
||||
public:
|
||||
TagPrivate() : file(0), footerLocation(-1), tagLength(0) {}
|
||||
|
||||
File *file;
|
||||
TagLib::File *file;
|
||||
long footerLocation;
|
||||
long tagLength;
|
||||
|
||||
@ -66,7 +66,7 @@ APE::Tag::Tag() : TagLib::Tag()
|
||||
d = new TagPrivate;
|
||||
}
|
||||
|
||||
APE::Tag::Tag(File *file, long footerLocation) : TagLib::Tag()
|
||||
APE::Tag::Tag(TagLib::File *file, long footerLocation) : TagLib::Tag()
|
||||
{
|
||||
d = new TagPrivate;
|
||||
d->file = file;
|
||||
|
Loading…
x
Reference in New Issue
Block a user