Fix parameter name mispatches
This commit is contained in:
@@ -98,7 +98,7 @@ class TAGLIB_EXPORT CommentsFrame : public Frame {
|
||||
*
|
||||
* \see language()
|
||||
*/
|
||||
void setLanguage(const ByteVector &languageCode);
|
||||
void setLanguage(const ByteVector &languageEncoding);
|
||||
|
||||
/*!
|
||||
* Sets the description of the comment to \a s.
|
||||
|
||||
@@ -157,7 +157,7 @@ class TAGLIB_EXPORT GeneralEncapsulatedObjectFrame : public Frame {
|
||||
* \see mimeType()
|
||||
* \see setMimeType()
|
||||
*/
|
||||
void setObject(const ByteVector &object);
|
||||
void setObject(const ByteVector &data);
|
||||
|
||||
protected:
|
||||
virtual void parseFields(const ByteVector &data);
|
||||
|
||||
@@ -64,16 +64,16 @@ String OwnershipFrame::pricePaid() const {
|
||||
return d->pricePaid;
|
||||
}
|
||||
|
||||
void OwnershipFrame::setPricePaid(const String &s) {
|
||||
d->pricePaid = s;
|
||||
void OwnershipFrame::setPricePaid(const String &pricePaid) {
|
||||
d->pricePaid = pricePaid;
|
||||
}
|
||||
|
||||
String OwnershipFrame::datePurchased() const {
|
||||
return d->datePurchased;
|
||||
}
|
||||
|
||||
void OwnershipFrame::setDatePurchased(const String &s) {
|
||||
d->datePurchased = s;
|
||||
void OwnershipFrame::setDatePurchased(const String &datePurchased) {
|
||||
d->datePurchased = datePurchased;
|
||||
}
|
||||
|
||||
String OwnershipFrame::seller() const {
|
||||
|
||||
@@ -60,24 +60,24 @@ String PopularimeterFrame::email() const {
|
||||
return d->email;
|
||||
}
|
||||
|
||||
void PopularimeterFrame::setEmail(const String &s) {
|
||||
d->email = s;
|
||||
void PopularimeterFrame::setEmail(const String &email) {
|
||||
d->email = email;
|
||||
}
|
||||
|
||||
int PopularimeterFrame::rating() const {
|
||||
return d->rating;
|
||||
}
|
||||
|
||||
void PopularimeterFrame::setRating(int s) {
|
||||
d->rating = s;
|
||||
void PopularimeterFrame::setRating(int rating) {
|
||||
d->rating = rating;
|
||||
}
|
||||
|
||||
unsigned int PopularimeterFrame::counter() const {
|
||||
return d->counter;
|
||||
}
|
||||
|
||||
void PopularimeterFrame::setCounter(unsigned int s) {
|
||||
d->counter = s;
|
||||
void PopularimeterFrame::setCounter(unsigned int counter) {
|
||||
d->counter = counter;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@@ -84,7 +84,7 @@ class TAGLIB_EXPORT PrivateFrame : public Frame {
|
||||
/*!
|
||||
*
|
||||
*/
|
||||
void setData(const ByteVector &v);
|
||||
void setData(const ByteVector &data);
|
||||
|
||||
protected:
|
||||
// Reimplementations.
|
||||
|
||||
@@ -172,7 +172,7 @@ class TAGLIB_EXPORT SynchronizedLyricsFrame : public Frame {
|
||||
*
|
||||
* \see language()
|
||||
*/
|
||||
void setLanguage(const ByteVector &languageCode);
|
||||
void setLanguage(const ByteVector &languageEncoding);
|
||||
|
||||
/*!
|
||||
* Set the timestamp format.
|
||||
|
||||
@@ -97,7 +97,7 @@ class TAGLIB_EXPORT UnsynchronizedLyricsFrame : public Frame {
|
||||
*
|
||||
* \see language()
|
||||
*/
|
||||
void setLanguage(const ByteVector &languageCode);
|
||||
void setLanguage(const ByteVector &languageEncoding);
|
||||
|
||||
/*!
|
||||
* Sets the description of the unsynchronized lyrics frame to \a s.
|
||||
|
||||
2
3rdparty/taglib/mpeg/id3v2/id3v2frame.h
vendored
2
3rdparty/taglib/mpeg/id3v2/id3v2frame.h
vendored
@@ -398,7 +398,7 @@ class TAGLIB_EXPORT Frame::Header {
|
||||
*
|
||||
* \see tagAlterPreservation()
|
||||
*/
|
||||
void setTagAlterPreservation(bool discard);
|
||||
void setTagAlterPreservation(bool preserve);
|
||||
|
||||
/*!
|
||||
* Returns true if the flag for file alter preservation is set.
|
||||
|
||||
2
3rdparty/taglib/mpeg/id3v2/id3v2synchdata.h
vendored
2
3rdparty/taglib/mpeg/id3v2/id3v2synchdata.h
vendored
@@ -57,7 +57,7 @@ TAGLIB_EXPORT ByteVector fromUInt(unsigned int value);
|
||||
/*!
|
||||
* Convert the data from unsynchronized data to its original format.
|
||||
*/
|
||||
TAGLIB_EXPORT ByteVector decode(const ByteVector &input);
|
||||
TAGLIB_EXPORT ByteVector decode(const ByteVector &data);
|
||||
} // namespace SynchData
|
||||
|
||||
} // namespace ID3v2
|
||||
|
||||
Reference in New Issue
Block a user