mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
missing const
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@332913 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
parent
2025c4e9e5
commit
1ad5582391
@ -295,7 +295,7 @@ const FrameList &ID3v2::Tag::frameList() const
|
||||
return d->frameList;
|
||||
}
|
||||
|
||||
const FrameList &ID3v2::Tag::frameList(const ByteVector &frameID)
|
||||
const FrameList &ID3v2::Tag::frameList(const ByteVector &frameID) const
|
||||
{
|
||||
return d->frameListMap[frameID];
|
||||
}
|
||||
|
@ -227,7 +227,7 @@ namespace TagLib {
|
||||
*
|
||||
* \see frameListMap()
|
||||
*/
|
||||
const FrameList &frameList(const ByteVector &frameID);
|
||||
const FrameList &frameList(const ByteVector &frameID) const;
|
||||
|
||||
/*!
|
||||
* Add a frame to the tag. At this point the tag takes ownership of
|
||||
|
Loading…
Reference in New Issue
Block a user