Fix parameter name mispatches
This commit is contained in:
6
3rdparty/taglib/mp4/mp4item.cpp
vendored
6
3rdparty/taglib/mp4/mp4item.cpp
vendored
@@ -93,9 +93,9 @@ MP4::Item::Item(long long value) : d(new ItemPrivate()) {
|
||||
d->m_longlong = value;
|
||||
}
|
||||
|
||||
MP4::Item::Item(int value1, int value2) : d(new ItemPrivate()) {
|
||||
d->m_intPair.first = value1;
|
||||
d->m_intPair.second = value2;
|
||||
MP4::Item::Item(int first, int second) : d(new ItemPrivate()) {
|
||||
d->m_intPair.first = first;
|
||||
d->m_intPair.second = second;
|
||||
}
|
||||
|
||||
MP4::Item::Item(const ByteVectorList &value) : d(new ItemPrivate()) {
|
||||
|
||||
4
3rdparty/taglib/mp4/mp4tag.h
vendored
4
3rdparty/taglib/mp4/mp4tag.h
vendored
@@ -91,8 +91,8 @@ class TAGLIB_EXPORT Tag : public Strawberry_TagLib::TagLib::Tag {
|
||||
bool contains(const String &key) const;
|
||||
|
||||
PropertyMap properties() const;
|
||||
void removeUnsupportedProperties(const StringList &properties);
|
||||
PropertyMap setProperties(const PropertyMap &properties);
|
||||
void removeUnsupportedProperties(const StringList &props);
|
||||
PropertyMap setProperties(const PropertyMap &props);
|
||||
|
||||
private:
|
||||
AtomDataList parseData2(const Atom *atom, int expectedFlags = -1, bool freeForm = false);
|
||||
|
||||
Reference in New Issue
Block a user