[sound-juicer] Add composer sortname to album data



commit 26510bfee8a5c19d30b14cf042fccf8645fc9c0a
Author: Phillip Wood <phillip wood dunelm org uk>
Date:   Sun May 13 13:13:27 2012 +0100

    Add composer sortname to album data
    
    https://bugzilla.gnome.org/show_bug.cgi?id=661646

 libjuicer/sj-structures.c |    1 +
 libjuicer/sj-structures.h |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/libjuicer/sj-structures.c b/libjuicer/sj-structures.c
index 44f38bc..89fe77e 100644
--- a/libjuicer/sj-structures.c
+++ b/libjuicer/sj-structures.c
@@ -50,6 +50,7 @@ void album_details_free(AlbumDetails *album)
   g_free (album->title);
   g_free (album->artist);
   g_free (album->composer);
+  g_free (album->composer_sortname);
   g_free (album->genre);
   g_free (album->album_id);
   if (album->release_date) g_date_free (album->release_date);
diff --git a/libjuicer/sj-structures.h b/libjuicer/sj-structures.h
index 4364387..a611521 100644
--- a/libjuicer/sj-structures.h
+++ b/libjuicer/sj-structures.h
@@ -59,6 +59,7 @@ struct _AlbumDetails {
   char* artist;
   char* artist_sortname;
   char* composer;
+  char* composer_sortname;
   char *genre;
   int   number; /* number of tracks in the album */
   int   disc_number;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]