poppler/GfxFont.cc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-)
New commits: commit 668bc8068faee5a488ce4030463e3daeecfb75e1 Author: Peter Kerzum <[email protected]> Date: Fri Apr 17 22:14:26 2009 +0200 Fix typo in GfxFont.cc diff --git a/poppler/GfxFont.cc b/poppler/GfxFont.cc index 2ebcc91..0a121c5 100644 --- a/poppler/GfxFont.cc +++ b/poppler/GfxFont.cc @@ -19,6 +19,8 @@ // Copyright (C) 2007 Ed Catmur <[email protected]> // Copyright (C) 2008 Jonathan Kew <[email protected]> // Copyright (C) 2008 Ed Avis <[email protected]> +// Copyright (C) 2008 Hib Eris <[email protected]> +// Copyright (C) 2009 Peter Kerzum <[email protected]> // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git @@ -1588,11 +1590,11 @@ GfxCIDFont::GfxCIDFont(XRef *xref, char *tagA, Ref idA, GooString *nameA, if (obj3.arrayGet(k, &obj4)->isNum() && obj3.arrayGet(k+1, &obj5)->isNum() && obj3.arrayGet(k+2, &obj6)->isNum()) { - widths.excepsV[widths.nExceps].first = j; - widths.excepsV[widths.nExceps].last = j; - widths.excepsV[widths.nExceps].height = obj4.getNum() * 0.001; - widths.excepsV[widths.nExceps].vx = obj5.getNum() * 0.001; - widths.excepsV[widths.nExceps].vy = obj6.getNum() * 0.001; + widths.excepsV[widths.nExcepsV].first = j; + widths.excepsV[widths.nExcepsV].last = j; + widths.excepsV[widths.nExcepsV].height = obj4.getNum() * 0.001; + widths.excepsV[widths.nExcepsV].vx = obj5.getNum() * 0.001; + widths.excepsV[widths.nExcepsV].vy = obj6.getNum() * 0.001; ++j; ++widths.nExcepsV; } else { _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
