Revision: 2034
          http://gtkpod.svn.sourceforge.net/gtkpod/?rev=2034&view=rev
Author:   teuf
Date:     2008-07-05 09:37:41 -0700 (Sat, 05 Jul 2008)

Log Message:
-----------
Fix bug in thumbnail rearranging code

Modified Paths:
--------------
    libgpod/trunk/ChangeLog
    libgpod/trunk/src/ithumb-writer.c

Modified: libgpod/trunk/ChangeLog
===================================================================
--- libgpod/trunk/ChangeLog     2008-07-05 16:37:27 UTC (rev 2033)
+++ libgpod/trunk/ChangeLog     2008-07-05 16:37:41 UTC (rev 2034)
@@ -1,5 +1,11 @@
 2008-07-05  Christophe Fergeau <[EMAIL PROTECTED]>
 
+       * src/ithumb-writer.c: fix typo in thumbnail rearranging code, we
+       were wrongly appending Itdb_Thumb_Ipod instances to lists of
+       Itdb_Thumb_Ipod_Item
+
+2008-07-05  Christophe Fergeau <[EMAIL PROTECTED]>
+
        * src/db-artwork-writer.c: properly set padding to 0 in mhods type 3
 
 2008-07-05  Christophe Fergeau <[EMAIL PROTECTED]>

Modified: libgpod/trunk/src/ithumb-writer.c
===================================================================
--- libgpod/trunk/src/ithumb-writer.c   2008-07-05 16:37:27 UTC (rev 2033)
+++ libgpod/trunk/src/ithumb-writer.c   2008-07-05 16:37:41 UTC (rev 2034)
@@ -1428,7 +1428,7 @@
                                if (filename)
                                {
                                        thumbs = g_hash_table_lookup 
(filenamehash, filename);
-                                       thumbs = g_list_append (thumbs, thumb);
+                                       thumbs = g_list_append (thumbs, item);
                                        g_hash_table_insert (filenamehash, 
filename, thumbs);
                                }
                             }
@@ -1453,7 +1453,7 @@
                        if (filename)
                        {
                                thumbs = g_hash_table_lookup (filenamehash, 
filename);
-                               thumbs = g_list_append (thumbs, thumb);
+                               thumbs = g_list_append (thumbs, item);
                                g_hash_table_insert (filenamehash, filename, 
thumbs);
                        }
                     } 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2

Reply via email to