summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJorg Schuler <jcsjcs@users.sourceforge.net>2006-10-31 12:52:09 +0000
committerJorg Schuler <jcsjcs@users.sourceforge.net>2006-10-31 12:52:09 +0000
commit4296e3132f71850f69eab7839e03bc9c4362954d (patch)
treeb234f1cd42c0bd9aa1f4b6f28a55ef1de840ea5c
parent8fd1eecb67153590d4c06734d2fac8cef2b32fe0 (diff)
downloadlibgpod-4296e3132f71850f69eab7839e03bc9c4362954d.tar.gz
libgpod-4296e3132f71850f69eab7839e03bc9c4362954d.tar.xz
libgpod-4296e3132f71850f69eab7839e03bc9c4362954d.zip
* src/itdb_photoalbum.c: fixed typo (Libarary -> Library).
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1332 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r--ChangeLog4
-rw-r--r--src/itdb_photoalbum.c9
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 70c75f2..20524fb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2006-10-29 Jorg Schuler <jcsjcs at users.sourceforge.net>
+ * src/itdb_photoalbum.c: fixed typo (Libarary -> Library).
+
+2006-10-29 Jorg Schuler <jcsjcs at users.sourceforge.net>
+
Major rework of picture support.
* src/db-artwork-parser.c, src/db-artwork-writer.c, src/itdb.h,
diff --git a/src/itdb_photoalbum.c b/src/itdb_photoalbum.c
index be74a28..edc1004 100644
--- a/src/itdb_photoalbum.c
+++ b/src/itdb_photoalbum.c
@@ -1,4 +1,4 @@
-/* Time-stamp: <2006-10-30 01:15:39 jcs>
+/* Time-stamp: <2006-10-31 21:49:36 jcs>
|
| Copyright (C) 2002-2006 Jorg Schuler <jcsjcs at users sourceforge net>
| Part of the gtkpod project.
@@ -71,7 +71,8 @@
Free all memory taken by the PhotoDB.
itdb_photodb_photoalbum_by_name():
- Find the first photoalbum with a given name.
+ Find the first photoalbum with a given name or the Photo
+ Library Album if called with no name.
If you cannot add photos because your iPod is not recognized, you
@@ -243,7 +244,7 @@ Itdb_PhotoDB *itdb_photodb_create (const gchar *mountpoint)
Itdb_PhotoDB *photodb = itdb_photodb_new ();
Itdb_PhotoAlbum *album;
- album = itdb_photodb_photoalbum_create (photodb, _("Photo Libarary"), -1);
+ album = itdb_photodb_photoalbum_create (photodb, _("Photo Library"), -1);
album->album_type = 1; /* Photo Library */
if (mountpoint)
@@ -433,7 +434,7 @@ static Itdb_Artwork *itdb_photodb_add_photo_internal (Itdb_PhotoDB *db,
album = itdb_photodb_photoalbum_by_name (db, NULL);
if (!album)
{
- album = itdb_photodb_photoalbum_create (db, _("Photo Libarary"), -1);
+ album = itdb_photodb_photoalbum_create (db, _("Photo Library"), -1);
album->album_type = 1; /* Photo Library */
}
itdb_photodb_photoalbum_add_photo (db, album, artwork);