From dbce74444a5a917b4b0e6b9fdc75fdac64397498 Mon Sep 17 00:00:00 2001 From: Martchus Date: Wed, 13 Feb 2019 21:44:19 +0100 Subject: [PATCH] Deprecate unused methods in Id3v2Frame --- id3/id3v2frame.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/id3/id3v2frame.cpp b/id3/id3v2frame.cpp index 5192aad..56245e7 100644 --- a/id3/id3v2frame.cpp +++ b/id3/id3v2frame.cpp @@ -977,6 +977,8 @@ void Id3v2Frame::parseComment(const char *buffer, std::size_t dataSize, TagValue * \param bufferSize Specifies the size of \a buffer. * \param value Specifies the string to make. * \param encoding Specifies the encoding of the string to make. + * \deprecated No longer used. + * \todo Remove in v9. */ void Id3v2Frame::makeString(std::unique_ptr &buffer, uint32 &bufferSize, const std::string &value, TagTextEncoding encoding) { @@ -990,6 +992,8 @@ void Id3v2Frame::makeString(std::unique_ptr &buffer, uint32 &bufferSize, * \param encoding Specifies the data encoding. * \param data Specifies the data. * \param dataSize Specifies size of \a data. + * \deprecated No longer used. + * \todo Remove in v9. */ void Id3v2Frame::makeEncodingAndData( std::unique_ptr &buffer, uint32 &bufferSize, TagTextEncoding encoding, const char *data, std::size_t dataSize)