summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTodd Zullinger <tmz@pobox.com>2008-08-05 02:10:44 -0400
committerTodd Zullinger <tmz@pobox.com>2008-11-14 12:14:44 -0500
commit8952144331eab0f8f078a8b3a3ad7beb1d38701d (patch)
tree21109b4b91b535893f2c92d5ff3de2d456af01d7
parent8a0ec675bb6a85bdf6d15f5440fa549da5f451b4 (diff)
downloadlibgpod-8952144331eab0f8f078a8b3a3ad7beb1d38701d.tar.gz
libgpod-8952144331eab0f8f078a8b3a3ad7beb1d38701d.tar.xz
libgpod-8952144331eab0f8f078a8b3a3ad7beb1d38701d.zip
Documentation: mark functions added in 0.1.6
-rw-r--r--src/itdb_playlist.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/itdb_playlist.c b/src/itdb_playlist.c
index 4405e04..f44a7e0 100644
--- a/src/itdb_playlist.c
+++ b/src/itdb_playlist.c
@@ -1500,7 +1500,9 @@ Itdb_Playlist *itdb_playlist_by_name (Itdb_iTunesDB *itdb, gchar *name)
* Checks if @pl is the master playlist
*
* Return value: TRUE if @pl is the master playlist, FALSE otherwise
- **/
+ *
+ * Since: 0.1.6
+ */
gboolean itdb_playlist_is_mpl (Itdb_Playlist *pl)
{
g_return_val_if_fail (pl, FALSE);
@@ -1515,7 +1517,9 @@ gboolean itdb_playlist_is_mpl (Itdb_Playlist *pl)
* Checks if @pl is the podcasts playlist
*
* Return value: TRUE if @pl is the podcasts playlist, FALSE otherwise
- **/
+ *
+ * Since: 0.1.6
+ */
gboolean itdb_playlist_is_podcasts (Itdb_Playlist *pl)
{
g_return_val_if_fail (pl, FALSE);
@@ -1584,7 +1588,9 @@ Itdb_Playlist *itdb_playlist_mpl (Itdb_iTunesDB *itdb)
* Gets the podcasts playlist of @itdb
*
* Return value: the podcasts playlist of @itdb, or NULL if it's there is none
- **/
+ *
+ * Since: 0.1.6
+ */
Itdb_Playlist *itdb_playlist_podcasts (Itdb_iTunesDB *itdb)
{
GList *gl;