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

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

View File

@@ -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.