+2008-11-04 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+
+ * backend/dvi/mdvi-lib/t1.c (t1_reset_resolution),
+ (t1_transform_font):
+ * backend/dvi/mdvi-lib/tt.c (tt_really_load_font), (tt_load_font):
+
+ More renames of warning to mdvi_warning in follow up to the
+ fix of the bug #553369. Fix for the bug #559257 by
+ Tuxce <tuxce.net@gmail.com>.
+
2008-11-04 Carlos Garcia Campos <carlosgc@gnome.org>
* NEWS:
T1_DeleteAllSizes(i);
/* reset device resolutions */
if(T1_SetDeviceResolutions((float)xdpi, (float)ydpi) < 0)
- warning(_("(t1) failed to reset device resolution\n"));
+ mdvi_warning(_("(t1) failed to reset device resolution\n"));
else
DEBUG((DBG_TYPE1,
"(t1) reset successful, new resolution is (%d, %d)\n",
info->fontname, info->encoding->name));
T1_DeleteAllSizes(info->t1id);
if(T1_ReencodeFont(info->t1id, info->encoding->vector) < 0)
- warning(_("%s: could not encode font\n"), info->fontname);
+ mdvi_warning(_("%s: could not encode font\n"), info->fontname);
}
if(info->mapinfo.slant) {
DEBUG((DBG_TYPE1, "(t1) %s: slanting by %.3f\n",
info->fontname));
status = TT_Open_Face(tt_handle, font->filename, &info->face);
if(status) {
- warning(_("(tt) %s: could not load face: %s\n"),
+ mdvi_warning(_("(tt) %s: could not load face: %s\n"),
info->fontname, TT_ErrToString18(status));
return -1;
}
/* create a new instance of this face */
status = TT_New_Instance(info->face, &info->instance);
if(status) {
- warning(_("(tt) %s: could not create face: %s\n"),
+ mdvi_warning(_("(tt) %s: could not create face: %s\n"),
info->fontname, TT_ErrToString18(status));
TT_Close_Face(info->face);
return -1;
/* create a glyph */
status = TT_New_Glyph(info->face, &info->glyph);
if(status) {
- warning(_("(tt) %s: could not create glyph: %s\n"),
+ mdvi_warning(_("(tt) %s: could not create glyph: %s\n"),
info->fontname, TT_ErrToString18(status));
goto tt_error;
}
}
}
if(map_found < 0) {
- warning(_("(tt) %s: no acceptable map found, using #0\n"),
+ mdvi_warning(_("(tt) %s: no acceptable map found, using #0\n"),
info->fontname);
map_found = 0;
}
status = TT_Load_PS_Names(info->face, &post);
if(status) {
- warning(_("(tt) %s: could not load PS name table\n"),
+ mdvi_warning(_("(tt) %s: could not load PS name table\n"),
info->fontname);
mdvi_release_encoding(info->encoding, 0);
info->encoding = NULL;
info->fmftype, info->fmfname);
if(info->tfminfo == NULL) {
- warning("(tt) %s: no metrics data, font ignored\n",
+ mdvi_warning("(tt) %s: no metrics data, font ignored\n",
info->fontname);
goto tt_error;
}
if(info->encoding)
tt_encode_font(font, info);
else {
- warning(_("%s: no encoding vector found, expect bad output\n"),
+ mdvi_warning(_("%s: no encoding vector found, expect bad output\n"),
info->fontname);
/* this is better than nothing */
for(i = font->loc; i <= font->hic; i++)
}
if(info->fmfname == NULL)
- warning(_("(tt) %s: no font metric data\n"), font->fontname);
+ mdvi_warning(_("(tt) %s: no font metric data\n"), font->fontname);
listh_append(&ttfonts, LIST(info));
font->private = info;