]> granicus.if.org Git - taglib/commitdiff
Resolve ambiguous File symbol in apetag.cpp
authorVinnie Falco <vinnie.falco@gmail.com>
Sun, 15 Apr 2012 14:57:02 +0000 (07:57 -0700)
committerVinnie Falco <vinnie.falco@gmail.com>
Sun, 15 Apr 2012 14:57:02 +0000 (07:57 -0700)
taglib/ape/apetag.cpp

index 0676c9b62b53cc12dc9d59a4fe241cffb7f3f10c..7a16f3f23d47aefdf2389701e549a4dfc8fbf67a 100644 (file)
@@ -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;