From: Tsuda Kageyu Date: Wed, 16 Dec 2015 04:39:22 +0000 (+0900) Subject: Amend a comment that refers to a deprecated function. X-Git-Tag: v1.11beta~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=581e58585ab234654984c7477b6abe01f9592cd4;p=taglib Amend a comment that refers to a deprecated function. --- diff --git a/taglib/mpeg/id3v2/id3v2framefactory.h b/taglib/mpeg/id3v2/id3v2framefactory.h index fe81c71f..c3875dc5 100644 --- a/taglib/mpeg/id3v2/id3v2framefactory.h +++ b/taglib/mpeg/id3v2/id3v2framefactory.h @@ -47,9 +47,9 @@ namespace TagLib { * Reimplementing this factory is the key to adding support for frame types * not directly supported by TagLib to your application. To do so you would * subclass this factory reimplement createFrame(). Then by setting your - * factory to be the default factory in ID3v2::Tag constructor or with - * MPEG::File::setID3v2FrameFactory() you can implement behavior that will - * allow for new ID3v2::Frame subclasses (also provided by you) to be used. + * factory to be the default factory in ID3v2::Tag constructor you can + * implement behavior that will allow for new ID3v2::Frame subclasses (also + * provided by you) to be used. * * This implements both abstract factory and singleton patterns * of which more information is available on the web and in software design