El mar, 02-06-2009 a las 14:02 -0700, Albert Astals Cid escribió:
> @@ -3695,6 +3780,12 @@ void Gfx::doImage(Object *ref, Stream *str,
> GBool inlineImg) {
>      // draw it
>      if (!contentIsHidden())
>        out->drawImageMask(state, ref, str, width, height, invert,
> inlineImg);
> +      if (out->fillMaskCSPattern(state)) {
> +        maskHaveCSPattern = gTrue;
> +        doPatternFill(gTrue);
> +        out->endMaskClip(state);
> +        maskHaveCSPattern = gFalse;
> +      }
>  
>    } else { 

I think {} are missing there, I guess it should be:

if (!contentIsHidden()) {
  out->drawImageMask(state, ref, str, width, height, invert, inlineImg);
  if (out->fillMaskCSPattern(state)) {
    [....]
  }
}

or am I wrong?

-- 
Carlos Garcia Campos
   [email protected]
   [email protected]
   http://carlosgc.linups.org
PGP key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x523E6462

Attachment: signature.asc
Description: Esta parte del mensaje está firmada digitalmente

_______________________________________________
poppler mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/poppler

Reply via email to