]> www.fi.muni.cz Git - evince.git/commitdiff
More renames of warning to mdvi_warning in follow up to the fix of the bug
authorNickolay V. Shmyrev <nshmyrev@yandex.ru>
Tue, 4 Nov 2008 20:45:44 +0000 (20:45 +0000)
committerNickolay V. Shmyrev <nshmyrev@src.gnome.org>
Tue, 4 Nov 2008 20:45:44 +0000 (20:45 +0000)
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>.

svn path=/trunk/; revision=3253

ChangeLog
backend/dvi/mdvi-lib/t1.c
backend/dvi/mdvi-lib/tt.c

index ab8aae759699f06097d76a391734c3e09f402a2e..75f7e7edf6c096cf416bae2d173e262ff5b01e23 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+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:
index e7cd4f80f4bd9fcbd443258c5ad940a59cea9f49..4e7be63a6bc95ea3e2e4695ab580017681ee0298 100644 (file)
@@ -184,7 +184,7 @@ static void t1_reset_resolution(int xdpi, int ydpi)
                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",
@@ -212,7 +212,7 @@ static void t1_transform_font(T1Info *info)
                        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", 
index ab096d30a23889a58c74937adf041d8f8a33b826..e2edd29628adba648503cd31c9bb313027da81a5 100644 (file)
@@ -148,7 +148,7 @@ static int tt_really_load_font(DviParams *params, DviFont *font, FTInfo *info)
                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;
        }
@@ -156,7 +156,7 @@ static int tt_really_load_font(DviParams *params, DviFont *font, FTInfo *info)
        /* 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;
@@ -165,7 +165,7 @@ static int tt_really_load_font(DviParams *params, DviFont *font, FTInfo *info)
        /* 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;
        }
@@ -198,7 +198,7 @@ static int tt_really_load_font(DviParams *params, DviFont *font, FTInfo *info)
                }
        }
        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;
        }
@@ -237,7 +237,7 @@ static int tt_really_load_font(DviParams *params, DviFont *font, FTInfo *info)
                
                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;
@@ -249,7 +249,7 @@ static int tt_really_load_font(DviParams *params, DviFont *font, FTInfo *info)
                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;
        }
@@ -262,7 +262,7 @@ static int tt_really_load_font(DviParams *params, DviFont *font, FTInfo *info)
        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++)
@@ -322,7 +322,7 @@ static int tt_load_font(DviParams *params, DviFont *font)
        }
        
        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;