diff options
-rw-r--r-- | src/itdb_playlist.c | 12 |
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; |