Revision: 2026
http://gtkpod.svn.sourceforge.net/gtkpod/?rev=2026&view=rev
Author: dforsi
Date: 2008-06-29 10:42:59 -0700 (Sun, 29 Jun 2008)
Log Message:
-----------
fix typos: s/ipod/iPod/ s/availale/available/ s/of non-existent/if non-existent/
Modified Paths:
--------------
libgpod/trunk/ChangeLog
libgpod/trunk/src/itdb_device.c
libgpod/trunk/src/itdb_itunesdb.c
libgpod/trunk/src/itdb_photoalbum.c
libgpod/trunk/src/itdb_thumb.c
Modified: libgpod/trunk/ChangeLog
===================================================================
--- libgpod/trunk/ChangeLog 2008-06-29 14:12:34 UTC (rev 2025)
+++ libgpod/trunk/ChangeLog 2008-06-29 17:42:59 UTC (rev 2026)
@@ -1,3 +1,8 @@
+2008-06-29 Daniele Forsi <dforsi at users.sourceforge.net>
+
+ * src/itdb_itunesdb.c src/itdb_thumb.c src/itdb_device.c
+ src/itdb_photoalbum.c: fix typos in comments
+
2008-06-29 Jorg Schuler <jcsjcs at users.sourceforge.net>
* src/ithumb-writer.c (itdb_write_ithumb_files): fix bug when
Modified: libgpod/trunk/src/itdb_device.c
===================================================================
--- libgpod/trunk/src/itdb_device.c 2008-06-29 14:12:34 UTC (rev 2025)
+++ libgpod/trunk/src/itdb_device.c 2008-06-29 17:42:59 UTC (rev 2026)
@@ -1106,7 +1106,7 @@
* @device: an #Itdb_Device
*
* Indicates whether @device can display artwork or not. When dealing
- * with a non-art capable ipod, no artwork data will be written to the
+ * with a non-art capable iPod, no artwork data will be written to the
* iPod so you can spare calls to the artwork handling methods.
*
* Return value: true if @device can display artwork.
Modified: libgpod/trunk/src/itdb_itunesdb.c
===================================================================
--- libgpod/trunk/src/itdb_itunesdb.c 2008-06-29 14:12:34 UTC (rev 2025)
+++ libgpod/trunk/src/itdb_itunesdb.c 2008-06-29 17:42:59 UTC (rev 2026)
@@ -354,7 +354,7 @@
*
* Resolve the path to a track on the iPod
*
- * We start by assuming that the ipod mount point exists. Then, for
+ * We start by assuming that the iPod mount point exists. Then, for
* each component c of track->ipod_path, we try to find an entry d in
* good_path that is case-insensitively equal to c. If we find d, we
* append d to good_path and make the result the new good_path.
@@ -6345,7 +6345,7 @@
* for standard iPods and 'iTunes/iTunes_Control' for mobile
* applications.
*
- * Return value: path to the control dir or NULL of non-existent. Must
+ * Return value: path to the control dir or NULL if non-existent. Must
* g_free() after use.
**/
gchar *itdb_get_control_dir (const gchar *mountpoint)
@@ -6426,7 +6426,7 @@
* Retrieve the iTunes directory (containing the iTunesDB) by first
* calling itdb_get_control_dir() and then adding 'iTunes'
*
- * Return value: path to the iTunes directory or NULL of non-existent.
+ * Return value: path to the iTunes directory or NULL if non-existent.
* Must g_free() after use.
**/
gchar *itdb_get_itunes_dir (const gchar *mountpoint)
@@ -6443,7 +6443,7 @@
* Retrieve the Music directory (containing the Fnn dirs) by first
* calling itdb_get_control_dir() and then adding 'Music'
*
- * Return value: path to the Music directory or NULL of
+ * Return value: path to the Music directory or NULL if
* non-existent. Must g_free() after use.
**/
gchar *itdb_get_music_dir (const gchar *mountpoint)
@@ -6460,7 +6460,7 @@
* Retrieve the Device directory (containing the SysInfo file) by
* first calling itdb_get_control_dir() and then adding 'Device'
*
- * Return value: path to the Device directory or NULL of
+ * Return value: path to the Device directory or NULL if
* non-existent. Must g_free() after use.
**/
gchar *itdb_get_device_dir (const gchar *mountpoint)
@@ -6477,7 +6477,7 @@
* Retrieve the Artwork directory (containing the ArtworDB) by
* first calling itdb_get_control_dir() and then adding 'Artwork'
*
- * Return value: path to the Artwork directory or NULL of
+ * Return value: path to the Artwork directory or NULL if
* non-existent. Must g_free() after use.
**/
gchar *itdb_get_artwork_dir (const gchar *mountpoint)
Modified: libgpod/trunk/src/itdb_photoalbum.c
===================================================================
--- libgpod/trunk/src/itdb_photoalbum.c 2008-06-29 14:12:34 UTC (rev 2025)
+++ libgpod/trunk/src/itdb_photoalbum.c 2008-06-29 17:42:59 UTC (rev 2026)
@@ -122,7 +122,7 @@
* Retrieve the Photo directory by
* first calling itdb_get_control_dir() and then adding 'Photos'
*
- * Return value: path to the Artwork directory or NULL of
+ * Return value: path to the Artwork directory or NULL if
* non-existent. Must g_free() after use.
*/
gchar *itdb_get_photos_dir (const gchar *mountpoint)
@@ -177,7 +177,7 @@
* Retrieve the Photo Thumbnail directory by
* first calling itdb_get_control_dir() and then adding 'Photos/Thumbs'
*
- * Return value: path to the Artwork directory or NULL of
+ * Return value: path to the Artwork directory or NULL if
* non-existent. Must g_free() after use.
*/
gchar *itdb_get_photos_thumb_dir (const gchar *mountpoint)
Modified: libgpod/trunk/src/itdb_thumb.c
===================================================================
--- libgpod/trunk/src/itdb_thumb.c 2008-06-29 14:12:34 UTC (rev 2025)
+++ libgpod/trunk/src/itdb_thumb.c 2008-06-29 17:42:59 UTC (rev 2026)
@@ -439,7 +439,7 @@
gint h=height;
if ((width == -1) || (height == -1))
- { /* choose the largest availale thumbnail */
+ { /* choose the largest available thumbnail */
w = G_MAXINT;
h = G_MAXINT;
}
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2