Fix parameter name mispatches
This commit is contained in:
4
3rdparty/taglib/riff/aiff/aifffile.cpp
vendored
4
3rdparty/taglib/riff/aiff/aifffile.cpp
vendored
@@ -90,8 +90,8 @@ PropertyMap RIFF::AIFF::File::properties() const {
|
||||
return d->tag->properties();
|
||||
}
|
||||
|
||||
void RIFF::AIFF::File::removeUnsupportedProperties(const StringList &unsupported) {
|
||||
d->tag->removeUnsupportedProperties(unsupported);
|
||||
void RIFF::AIFF::File::removeUnsupportedProperties(const StringList &properties) {
|
||||
d->tag->removeUnsupportedProperties(properties);
|
||||
}
|
||||
|
||||
PropertyMap RIFF::AIFF::File::setProperties(const PropertyMap &properties) {
|
||||
|
||||
4
3rdparty/taglib/riff/wav/wavfile.cpp
vendored
4
3rdparty/taglib/riff/wav/wavfile.cpp
vendored
@@ -121,8 +121,8 @@ PropertyMap RIFF::WAV::File::properties() const {
|
||||
return d->tag.properties();
|
||||
}
|
||||
|
||||
void RIFF::WAV::File::removeUnsupportedProperties(const StringList &unsupported) {
|
||||
d->tag.removeUnsupportedProperties(unsupported);
|
||||
void RIFF::WAV::File::removeUnsupportedProperties(const StringList &properties) {
|
||||
d->tag.removeUnsupportedProperties(properties);
|
||||
}
|
||||
|
||||
PropertyMap RIFF::WAV::File::setProperties(const PropertyMap &properties) {
|
||||
|
||||
Reference in New Issue
Block a user