poppler/Gfx.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 30fb7cb7e47cf6a8008c5083c8d0978fdfdf8e62 Author: Albert Astals Cid <[email protected]> Date: Thu Jun 4 19:25:22 2009 +0200 Add missing { } diff --git a/poppler/Gfx.cc b/poppler/Gfx.cc index e907850..afd1d15 100644 --- a/poppler/Gfx.cc +++ b/poppler/Gfx.cc @@ -3778,7 +3778,7 @@ void Gfx::doImage(Object *ref, Stream *str, GBool inlineImg) { obj1.free(); // draw it - if (!contentIsHidden()) + if (!contentIsHidden()) { out->drawImageMask(state, ref, str, width, height, invert, inlineImg); if (out->fillMaskCSPattern(state)) { maskHaveCSPattern = gTrue; @@ -3786,7 +3786,7 @@ void Gfx::doImage(Object *ref, Stream *str, GBool inlineImg) { out->endMaskClip(state); maskHaveCSPattern = gFalse; } - + } } else { // get color space and color map _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
