]> granicus.if.org Git - taglib/commitdiff
Since these headers weren't even usable when installed, might as well go
authorScott Wheeler <wheeler@kde.org>
Sat, 6 Nov 2004 14:24:40 +0000 (14:24 +0000)
committerScott Wheeler <wheeler@kde.org>
Sat, 6 Nov 2004 14:24:40 +0000 (14:24 +0000)
ahead and remove the deprecated crap...

git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@360969 283d02a7-25f6-0310-bc7c-ecb5cbfe19da

ape/apeitem.cpp
ape/apeitem.h
ape/apetag.cpp
ape/apetag.h

index 1f8c4ba3981ad2fb562339f924a10d9a3846f4a6..aba4063c96ea295e61995e1a17ca664b051c3dab 100644 (file)
@@ -147,11 +147,6 @@ void APE::Item::parse(const ByteVector &data)
     d->text = StringList(ByteVectorList::split(d->value, '\0'), String::UTF8);
 }
 
-ByteVector APE::Item::render()
-{
-  return const_cast<const Item *>(this)->render();
-}
-
 ByteVector APE::Item::render() const
 {
   ByteVector data;
index 72226a9789c904047e1c1d0b62e769a83a2e1b95..f0a1d16abb571fe38caff412d5cbe3a289eb8cf1 100644 (file)
@@ -100,11 +100,6 @@ namespace TagLib {
        */
       StringList toStringList() const;
 
-      /*!
-       * \deprecated Use the const version.
-       */
-      ByteVector render();
-
       /*!
        * Render the item to a ByteVector.
        */
index 492601575d99972718e46e2b818f91dd0271ea5b..3fecad8ba990deb1c137ac2122639e0eb6e1cc9c 100644 (file)
@@ -238,11 +238,6 @@ ByteVector APE::Tag::render() const
   return d->footer.renderHeader() + data + d->footer.renderFooter();
 }
 
-void APE::Tag::parse(const ByteVector &data, uint)
-{
-  parse(data);
-}
-
 void APE::Tag::parse(const ByteVector &data)
 {
   uint pos = 0;
index d715e64d678742e9aeebf9e44b64a6d780735b17..0d631b589b055eb14e6407d537192ac07f9b92b0 100644 (file)
@@ -40,7 +40,6 @@ namespace TagLib {
 
     class Footer;
 
-
     /*!
      * A mapping between a list of item names, or keys, and the associated item.
      *
@@ -140,11 +139,6 @@ namespace TagLib {
        * Reads from the file specified in the constructor.
        */
       void read();
-      /*!
-       * Parses the body of the tag in \a data with \a count items.
-       * \deprecated Please use the version that doesn't require an item count.
-       */
-      void parse(const ByteVector &data, uint count);
 
       /*!
        * Parses the body of the tag in \a data.