diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | pango/pango-ot-info.c | 6 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2008-11-19 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 error code in capital hex. + 2008-10-28 Behdad Esfahbod <behdad@gnome.org> * === Released 1.22.2 === diff --git a/pango/pango-ot-info.c b/pango/pango-ot-info.c index eb739339..55dc86ad 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 0x%04x", 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 0x%04x", 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 0x%04x", error); + g_warning ("Error loading GPOS table 0x%04X", error); } } |