summaryrefslogtreecommitdiffstats
path: root/src/itdb_track.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/itdb_track.c')
-rw-r--r--src/itdb_track.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/itdb_track.c b/src/itdb_track.c
index cbfc2ce..16a07d8 100644
--- a/src/itdb_track.c
+++ b/src/itdb_track.c
@@ -38,7 +38,7 @@
*
* Creates an empty #Itdb_Track
*
- * Return Value: the new #Itdb_Track, free it with itdb_track_free() when no
+ * Returns: the new #Itdb_Track, free it with itdb_track_free() when no
* longer needed
*/
Itdb_Track *itdb_track_new (void)
@@ -310,7 +310,7 @@ void itdb_track_unlink (Itdb_Track *track)
*
* Duplicates an existing track
*
- * Return value: a newly allocated #Itdb_Track
+ * Returns: a newly allocated #Itdb_Track
*/
Itdb_Track *itdb_track_duplicate (Itdb_Track *tr)
{
@@ -439,7 +439,7 @@ static gboolean itdb_track_set_thumbnails_internal (Itdb_Track *track,
* will only be generated when necessary, i.e. when itdb_save() or a similar
* function is called.
*
- * Return value: TRUE if the thumbnail could be added, FALSE otherwise.
+ * Returns: TRUE if the thumbnail could be added, FALSE otherwise.
*
* Since: 0.3.0
*/
@@ -465,7 +465,7 @@ gboolean itdb_track_set_thumbnails (Itdb_Track *track,
* will only be generated when necessary, i.e. when itdb_save() or a
* similar function is called.
*
- * Return value: TRUE if the thumbnail could be added, FALSE otherwise.
+ * Returns: TRUE if the thumbnail could be added, FALSE otherwise.
*
* Since: 0.4.0
*/
@@ -490,7 +490,7 @@ gboolean itdb_track_set_thumbnails_from_data (Itdb_Track *track,
* will only be generated when necessary, i.e. when itdb_save() or a
* similar function is called.
*
- * Return value: TRUE if the thumbnail could be added, FALSE otherwise.
+ * Returns: TRUE if the thumbnail could be added, FALSE otherwise.
*
* Since: 0.5.0
*/
@@ -540,7 +540,7 @@ void itdb_track_remove_thumbnails (Itdb_Track *track)
* itdb_track_id_tree_create(), itdb_track_id_tree_destroy(), and
* itdb_track_id_tree_by_id().
*
- * Return value: #Itdb_Track with the ID @id or NULL if the ID cannot be
+ * Returns: #Itdb_Track with the ID @id or NULL if the ID cannot be
* found.
*/
Itdb_Track *itdb_track_by_id (Itdb_iTunesDB *itdb, guint32 id)
@@ -573,7 +573,7 @@ static gint track_id_compare (gconstpointer a, gconstpointer b)
* Creates a balanced-binary tree for quick ID lookup that is used in
* itdb_track_by_id_tree()
*
- * Return value: a #GTree indexed by track IDs to be freed with
+ * Returns: a #GTree indexed by track IDs to be freed with
* itdb_track_id_tree_destroy() when no longer used
*/
GTree *itdb_track_id_tree_create (Itdb_iTunesDB *itdb)
@@ -615,7 +615,7 @@ void itdb_track_id_tree_destroy (GTree *idtree)
* Lookup an #Itdb_Track by @id using @idtree for faster lookup
* (compared to itdb_track_by_id())
*
- * Return value: the #Itdb_Track whose ID is @id, or NULL if such a track
+ * Returns: the #Itdb_Track whose ID is @id, or NULL if such a track
* couldn't be found
*/
Itdb_Track *itdb_track_id_tree_by_id (GTree *idtree, guint32 id)
@@ -631,7 +631,7 @@ Itdb_Track *itdb_track_id_tree_by_id (GTree *idtree, guint32 id)
*
* Determine if a @track has thumbnails
*
- * Return value: TRUE if @track has artwork available, FALSE otherwise
+ * Returns: TRUE if @track has artwork available, FALSE otherwise
*
* Since: 0.7.0
*/
@@ -653,7 +653,7 @@ gboolean itdb_track_has_thumbnails (Itdb_Track *track)
* scaling it if appropriate. If either height or width is -1, then the biggest
* unscaled thumbnail available will be returned.
*
- * Return value: a #GdkPixbuf that must be unreffed when no longer used, NULL
+ * Returns: a #GdkPixbuf that must be unreffed when no longer used, NULL
* if no artwork could be found or if libgpod is compiled without GdkPixbuf
* support
*