pango r2596 - in trunk: . pango



Author: behdad
Date: Mon Apr 21 19:03:13 2008
New Revision: 2596
URL: http://svn.gnome.org/viewvc/pango?rev=2596&view=rev

Log:
2008-04-20  Behdad Esfahbod  <behdad gnome org>

        * pango/pango-ot-info.c (pango_ot_info_get_gdef),
        (pango_ot_info_get_gsub), (pango_ot_info_get_gpos):
        Write out HarfBuzz errors as hex.



Modified:
   trunk/ChangeLog
   trunk/pango/pango-ot-info.c

Modified: trunk/pango/pango-ot-info.c
==============================================================================
--- trunk/pango/pango-ot-info.c	(original)
+++ trunk/pango/pango-ot-info.c	Mon Apr 21 19:03:13 2008
@@ -298,7 +298,7 @@
 	  error = HB_Load_GDEF_Table (info->face, &info->gdef);
 
 	  if (error && error != HB_Err_Not_Covered)
-	    g_warning ("Error loading GDEF table %d", error);
+	    g_warning ("Error loading GDEF table 0x%04x", error);
 
 	  if (!info->gdef)
 	    error = HB_New_GDEF_Table (&info->gdef);
@@ -328,7 +328,7 @@
 	  error = HB_Load_GSUB_Table (info->face, &info->gsub, gdef);
 
 	  if (error && error != HB_Err_Not_Covered)
-	    g_warning ("Error loading GSUB table %d", error);
+	    g_warning ("Error loading GSUB table 0x%04x", error);
 	}
     }
 
@@ -352,7 +352,7 @@
 	  error = HB_Load_GPOS_Table (info->face, &info->gpos, gdef);
 
 	  if (error && error != HB_Err_Not_Covered)
-	    g_warning ("Error loading GPOS table %d", error);
+	    g_warning ("Error loading GPOS table 0x%04x", error);
 	}
     }
 



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