Author: abrander
Date: 2010-05-31 03:43:09 +0200 (Mon, 31 May 2010)
New Revision: 3411

Modified:
   trunk/librawstudio/rs-tiff-ifd.c
Log:
[390] Renane read() to something not conflicting with system read().

Modified: trunk/librawstudio/rs-tiff-ifd.c
===================================================================
--- trunk/librawstudio/rs-tiff-ifd.c    2010-05-29 18:32:53 UTC (rev 3410)
+++ trunk/librawstudio/rs-tiff-ifd.c    2010-05-31 01:43:09 UTC (rev 3411)
@@ -22,7 +22,7 @@
 
 G_DEFINE_TYPE (RSTiffIfd, rs_tiff_ifd, G_TYPE_OBJECT)
 
-static void read(RSTiffIfd *ifd);
+static void read_entries(RSTiffIfd *ifd);
 
 enum {
        PROP_0,
@@ -115,7 +115,7 @@
                        "next-ifd", "next-ifd", "Offset for next ifd",
                        0, G_MAXUINT, 0, G_PARAM_READABLE));
 
-       klass->read = read;
+       klass->read = read_entries;
 }
 
 static void
@@ -140,7 +140,7 @@
 }
 
 static void
-read(RSTiffIfd *ifd)
+read_entries(RSTiffIfd *ifd)
 {
        gint i;
 


_______________________________________________
Rawstudio-commit mailing list
[email protected]
http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-commit

Reply via email to