Author: benny
Date: 2007-01-15 14:25:00 +0000 (Mon, 15 Jan 2007)
New Revision: 24480

Modified:
   thunar/trunk/ChangeLog
   thunar/trunk/thunar-vfs/thunar-vfs-thumb-jpeg.c
Log:
2007-01-15      Benedikt Meurer <[EMAIL PROTECTED]>

        * thunar-vfs/thunar-vfs-thumb-jpeg.c: Fix data parameter types for
          tvtj_exif_get_ushort() and tvtj_exif_get_ulong().




Modified: thunar/trunk/ChangeLog
===================================================================
--- thunar/trunk/ChangeLog      2007-01-15 14:09:36 UTC (rev 24479)
+++ thunar/trunk/ChangeLog      2007-01-15 14:25:00 UTC (rev 24480)
@@ -1,5 +1,10 @@
 2007-01-15     Benedikt Meurer <[EMAIL PROTECTED]>
 
+       * thunar-vfs/thunar-vfs-thumb-jpeg.c: Fix data parameter types for
+         tvtj_exif_get_ushort() and tvtj_exif_get_ulong().
+
+2007-01-15     Benedikt Meurer <[EMAIL PROTECTED]>
+
        * thunar-vfs/thunar-vfs-thumb-jpeg.c: Use Exif embedded thumbnails
          if available, which reduces the amount of data that must be
          retrieved from a camera to around 50k instead of the whole JPEG

Modified: thunar/trunk/thunar-vfs/thunar-vfs-thumb-jpeg.c
===================================================================
--- thunar/trunk/thunar-vfs/thunar-vfs-thumb-jpeg.c     2007-01-15 14:09:36 UTC 
(rev 24479)
+++ thunar/trunk/thunar-vfs/thunar-vfs-thumb-jpeg.c     2007-01-15 14:25:00 UTC 
(rev 24480)
@@ -330,7 +330,7 @@
 
 static guint
 tvtj_exif_get_ushort (const TvtjExif *exif,
-                      const gchar    *data)
+                      gconstpointer   data)
 {
   if (G_UNLIKELY (exif->big_endian))
     return GUINT16_FROM_BE (*((const guint16 *) data));
@@ -342,7 +342,7 @@
 
 static guint
 tvtj_exif_get_ulong (const TvtjExif *exif,
-                     const gchar    *data)
+                     gconstpointer   data)
 {
   if (G_UNLIKELY (exif->big_endian))
     return GUINT32_FROM_BE (*((const guint32 *) data));

_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits

Reply via email to