]> granicus.if.org Git - taglib/commitdiff
Amend a comment that refers to a deprecated function.
authorTsuda Kageyu <tsuda.kageyu@gmail.com>
Wed, 16 Dec 2015 04:39:22 +0000 (13:39 +0900)
committerTsuda Kageyu <tsuda.kageyu@gmail.com>
Wed, 16 Dec 2015 04:39:22 +0000 (13:39 +0900)
taglib/mpeg/id3v2/id3v2framefactory.h

index fe81c71f22e709d5c5a6df6ee1cb12f46726bfc2..c3875dc5cd291bbeb88091f39c83c74d8e6030de 100644 (file)
@@ -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 <i>abstract factory</i> and <i>singleton</i> patterns
      * of which more information is available on the web and in software design