diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | pango/pango-context.c | 11 |
2 files changed, 6 insertions, 10 deletions
@@ -1,5 +1,10 @@ 2009-01-08 Behdad Esfahbod <behdad@gnome.org> + * pango/pango-context.c (itemize_state_process_run): + Improve warning message. + +2009-01-08 Behdad Esfahbod <behdad@gnome.org> + Bug 549532 – Correction to the sample string for Hindi in pango-language-sample-table.h diff --git a/pango/pango-context.c b/pango/pango-context.c index 95916ebe..208952d3 100644 --- a/pango/pango-context.c +++ b/pango/pango-context.c @@ -1384,16 +1384,7 @@ itemize_state_process_run (ItemizeState *state) if (!g_object_get_data (G_OBJECT (fontmap), script_name)) { - const char *what; - if (shape_engine == NULL) - what = "shape engine"; - else if (font == NULL) - what = "font"; - else - what = "nothing (oops!)"; - - g_warning ("failed to find %s, expect ugly output. engine-type='%s', script='%s'", - what, + g_warning ("failed to choose a font, expect ugly output. engine-type='%s', script='%s'", pango_font_map_get_shape_engine_type (fontmap), script_name); |