summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2008-04-21 19:03:13 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2008-04-21 19:03:13 +0000
commit341700f326adec6cdf5b36f7d0aa7d1d030fda61 (patch)
tree651c30c24db0484c062a46d94700c37d2fa5d289
parentf648f4e73108e6b61d6f390c5c17585ed28b818f (diff)
downloadpango-341700f326adec6cdf5b36f7d0aa7d1d030fda61.tar.gz
Write out HarfBuzz errors as hex.
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. svn path=/trunk/; revision=2596
-rw-r--r--ChangeLog6
-rw-r--r--pango/pango-ot-info.c6
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 28fc606b..4498eba6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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.
+
2008-04-09 Behdad Esfahbod <behdad@gnome.org>
* === Released 1.20.2 ===
diff --git a/pango/pango-ot-info.c b/pango/pango-ot-info.c
index 50792bad..184ac604 100644
--- a/pango/pango-ot-info.c
+++ b/pango/pango-ot-info.c
@@ -298,7 +298,7 @@ pango_ot_info_get_gdef (PangoOTInfo *info)
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 @@ pango_ot_info_get_gsub (PangoOTInfo *info)
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 @@ pango_ot_info_get_gpos (PangoOTInfo *info)
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);
}
}