From c22791318c0aaa17ed8b347622a1fe379b469c2d Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Sun, 15 Apr 2012 07:57:02 -0700 Subject: [PATCH] Resolve ambiguous File symbol in apetag.cpp --- taglib/ape/apetag.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/taglib/ape/apetag.cpp b/taglib/ape/apetag.cpp index 0676c9b6..7a16f3f2 100644 --- a/taglib/ape/apetag.cpp +++ b/taglib/ape/apetag.cpp @@ -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;