diff options
author | Todd Zullinger <tmz@pobox.com> | 2008-08-05 02:06:46 -0400 |
---|---|---|
committer | Todd Zullinger <tmz@pobox.com> | 2008-11-14 12:14:43 -0500 |
commit | 8a0ec675bb6a85bdf6d15f5440fa549da5f451b4 (patch) | |
tree | 568db045ef1548eebc6eff1182f3ba2e950691a8 | |
parent | 7a1ee4d23ad572b1c48bcc72f34719a78ddc59fd (diff) | |
download | libgpod-8a0ec675bb6a85bdf6d15f5440fa549da5f451b4.tar.gz libgpod-8a0ec675bb6a85bdf6d15f5440fa549da5f451b4.tar.xz libgpod-8a0ec675bb6a85bdf6d15f5440fa549da5f451b4.zip |
Documentation: mark functions added in 0.2.0
-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 9acd695..4405e04 100644 --- a/src/itdb_playlist.c +++ b/src/itdb_playlist.c @@ -931,7 +931,9 @@ static void spl_update2 (Itdb_Playlist *playlist, gpointer data) * * Updates all 'live' smart playlists contained in @itdb, ie those which have * the 'live updating' flag set - **/ + * + * Since: 0.2.0 + */ void itdb_spl_update_live (Itdb_iTunesDB *itdb) { g_return_if_fail (itdb); @@ -1526,7 +1528,9 @@ gboolean itdb_playlist_is_podcasts (Itdb_Playlist *pl) * @pl: an #Itdb_Playlist * * Sets @pl to be a master playlist - **/ + * + * Since: 0.2.0 + */ void itdb_playlist_set_mpl (Itdb_Playlist *pl) { g_return_if_fail (pl); @@ -1539,7 +1543,9 @@ void itdb_playlist_set_mpl (Itdb_Playlist *pl) * @pl: an #Itdb_Playlist * * Set @pl to be a podcasts playlist - **/ + * + * Since: 0.2.0 + */ void itdb_playlist_set_podcasts (Itdb_Playlist *pl) { g_return_if_fail (pl); |