]> granicus.if.org Git - taglib/commitdiff
SVN_SILENT missing docs
authorScott Wheeler <wheeler@kde.org>
Fri, 22 Jul 2005 09:03:15 +0000 (09:03 +0000)
committerScott Wheeler <wheeler@kde.org>
Fri, 22 Jul 2005 09:03:15 +0000 (09:03 +0000)
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@437534 283d02a7-25f6-0310-bc7c-ecb5cbfe19da

toolkit/tlist.h

index 371543a501f4ebd2eabc771e9dae7aa11bbae2a2..1aed47a63de2bda82c22375d67da14a2478cd7d7 100644 (file)
@@ -120,7 +120,16 @@ namespace TagLib {
      */
     List<T> &append(const List<T> &l);
 
+    /*!
+     * Prepends \a item to the beginning list and returns a reference to the
+     * list.
+     */
     List<T> &prepend(const T &item);
+
+    /*!
+     * Prepends all of the items in \a l to the beginning list and returns a
+     * reference to the list.
+     */
     List<T> &prepend(const List<T> &l);
 
     /*!