Fix parameter name mispatches

This commit is contained in:
Jonas Kvinge
2020-06-14 18:58:24 +02:00
parent 2fbdb29ebc
commit 082c9097e4
76 changed files with 145 additions and 147 deletions

View File

@@ -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()) {

View File

@@ -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);