mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Fix instance references to a static member function.
This commit is contained in:
parent
3612c2cc24
commit
fa4289e044
@ -283,7 +283,7 @@ void APE::File::read(bool readProperties)
|
||||
if(d->APELocation >= 0) {
|
||||
d->tag.set(ApeAPEIndex, new APE::Tag(this, d->APELocation));
|
||||
d->APESize = APETag()->footer()->completeTagSize();
|
||||
d->APELocation = d->APELocation + APETag()->footer()->size() - d->APESize;
|
||||
d->APELocation = d->APELocation + APE::Footer::size() - d->APESize;
|
||||
d->hasAPE = true;
|
||||
}
|
||||
|
||||
|
@ -282,7 +282,7 @@ void MPC::File::read(bool readProperties)
|
||||
d->tag.set(MPCAPEIndex, new APE::Tag(this, d->APELocation));
|
||||
|
||||
d->APESize = APETag()->footer()->completeTagSize();
|
||||
d->APELocation = d->APELocation + APETag()->footer()->size() - d->APESize;
|
||||
d->APELocation = d->APELocation + APE::Footer::size() - d->APESize;
|
||||
d->hasAPE = true;
|
||||
}
|
||||
|
||||
|
@ -258,7 +258,7 @@ void WavPack::File::read(bool readProperties)
|
||||
if(d->APELocation >= 0) {
|
||||
d->tag.set(WavAPEIndex, new APE::Tag(this, d->APELocation));
|
||||
d->APESize = APETag()->footer()->completeTagSize();
|
||||
d->APELocation = d->APELocation + APETag()->footer()->size() - d->APESize;
|
||||
d->APELocation = d->APELocation + APE::Footer::size() - d->APESize;
|
||||
d->hasAPE = true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user