From e0d9c9be8881662bb47b8ff14d0056206896b73f Mon Sep 17 00:00:00 2001 From: dforsi Date: Sun, 29 Jun 2008 17:42:59 +0000 Subject: fix typos: s/ipod/iPod/ s/availale/available/ s/of non-existent/if non-existent/ git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@2026 f01d2545-417e-4e96-918e-98f8d0dbbcb6 --- ChangeLog | 5 +++++ src/itdb_device.c | 2 +- src/itdb_itunesdb.c | 12 ++++++------ src/itdb_photoalbum.c | 4 ++-- src/itdb_thumb.c | 2 +- 5 files changed, 15 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index daa03b5..98bcb90 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-06-29 Daniele Forsi + + * 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 * src/ithumb-writer.c (itdb_write_ithumb_files): fix bug when diff --git a/src/itdb_device.c b/src/itdb_device.c index 2197e72..d15375d 100644 --- a/src/itdb_device.c +++ b/src/itdb_device.c @@ -1106,7 +1106,7 @@ const gchar *itdb_info_get_ipod_generation_string (Itdb_IpodGeneration generatio * @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. diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c index 5832917..a6ef6d2 100644 --- a/src/itdb_itunesdb.c +++ b/src/itdb_itunesdb.c @@ -354,7 +354,7 @@ static void fcontents_free (FContents *cts) * * 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 @@ itdb_file_set_contents (const char *filename, * 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 @@ gchar *itdb_get_path (const gchar *dir, const gchar *file) * 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 @@ gchar *itdb_get_itunes_dir (const gchar *mountpoint) * 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 @@ gchar *itdb_get_music_dir (const gchar *mountpoint) * 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 @@ gchar *itdb_get_device_dir (const gchar *mountpoint) * 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) diff --git a/src/itdb_photoalbum.c b/src/itdb_photoalbum.c index a6b6d6d..747c17e 100644 --- a/src/itdb_photoalbum.c +++ b/src/itdb_photoalbum.c @@ -122,7 +122,7 @@ static void error_no_photos_dir (const gchar *mp, GError **error) * 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 @@ gchar *itdb_get_photodb_path (const gchar *mountpoint) * 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) diff --git a/src/itdb_thumb.c b/src/itdb_thumb.c index 42a87f2..fe89e94 100644 --- a/src/itdb_thumb.c +++ b/src/itdb_thumb.c @@ -439,7 +439,7 @@ gpointer itdb_thumb_to_pixbuf_at_size (Itdb_Device *device, Itdb_Thumb *thumb, gint h=height; if ((width == -1) || (height == -1)) - { /* choose the largest availale thumbnail */ + { /* choose the largest available thumbnail */ w = G_MAXINT; h = G_MAXINT; } -- cgit