From: Scott Wheeler Date: Wed, 23 Nov 2005 10:27:33 +0000 (+0000) Subject: Missing class name on the method declaration. I'm sure this caused some X-Git-Tag: v1.5~252 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d06d23ec6928e10e432cbcf8c80db95ddf2276b;p=taglib Missing class name on the method declaration. I'm sure this caused some fun symbol conflicts... git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@482539 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- diff --git a/mpeg/id3v2/frames/textidentificationframe.cpp b/mpeg/id3v2/frames/textidentificationframe.cpp index ee213787..809532c2 100644 --- a/mpeg/id3v2/frames/textidentificationframe.cpp +++ b/mpeg/id3v2/frames/textidentificationframe.cpp @@ -223,7 +223,7 @@ void UserTextIdentificationFrame::setDescription(const String &s) TextIdentificationFrame::setText(l); } -UserTextIdentificationFrame *find(ID3v2::Tag *tag, const String &description) // static +UserTextIdentificationFrame *UserTextIdentificationFrame::find(ID3v2::Tag *tag, const String &description) // static { FrameList l = tag->frameList("TXXX"); for(FrameList::Iterator it = l.begin(); it != l.end(); ++it) {