Correct bug in last change.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@27800 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2009-02-06 10:11:30 +00:00
parent dac60cb4d2
commit 33ccb792b2
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2009-02-06 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoGState.m (-copyWithZone:): Correction to last
change.
2009-02-05 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoGState.m (-copyWithZone:): Better handling of

View file

@ -240,7 +240,7 @@ static float floatToUserSpace(NSAffineTransform *ctm, float f)
double y2;
cairo_clip_extents(_ct, &x1, &y1, &x2, &y2);
cairo_rectangle(copy->_ct, x1, y2, x2 - x1, y2 - y1);
cairo_rectangle(copy->_ct, x1, y1, x2 - x1, y2 - y1);
cairo_clip(copy->_ct);
}
else
@ -1246,7 +1246,6 @@ _set_op(cairo_t *ct, NSCompositingOperation op)
return;
}
/*
* we check if we copy on ourself, if that's the case
* we'll use the groups trick...