Fix parameter name mispatches
This commit is contained in:
4
3rdparty/taglib/toolkit/tbytevector.cpp
vendored
4
3rdparty/taglib/toolkit/tbytevector.cpp
vendored
@@ -349,8 +349,8 @@ ByteVector::~ByteVector() {
|
||||
delete d;
|
||||
}
|
||||
|
||||
ByteVector &ByteVector::setData(const char *s, unsigned int length) {
|
||||
ByteVector(s, length).swap(*this);
|
||||
ByteVector &ByteVector::setData(const char *data, unsigned int length) {
|
||||
ByteVector(data, length).swap(*this);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
2
3rdparty/taglib/toolkit/tstringlist.h
vendored
2
3rdparty/taglib/toolkit/tstringlist.h
vendored
@@ -66,7 +66,7 @@ class TAGLIB_EXPORT StringList : public List<String> {
|
||||
* \note This should only be used with the 8-bit codecs Latin1 and UTF8,
|
||||
* when used with other codecs it will simply print a warning and exit.
|
||||
*/
|
||||
StringList(const ByteVectorList &vl, String::Type t = String::Latin1);
|
||||
StringList(const ByteVectorList &bl, String::Type t = String::Latin1);
|
||||
|
||||
/*!
|
||||
* Destroys this StringList instance.
|
||||
|
||||
Reference in New Issue
Block a user