Clear the GNUstep path after operation.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@25471 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2007-09-09 20:34:13 +00:00
parent ce58b92800
commit 6455a62a4f
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2007-09-09 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoGState.m (-DPSeofill, -DPSfill, -DPSstroke):
Clear the GNUstep path after operation.
2007-09-06 Fred Kiefer <FredKiefer@gmx.de>
* Source/cairo/CairoGState.m (-copyWithZone:): Copy dash and clipping.

View file

@ -734,6 +734,7 @@
cairo_fill(_ct);
cairo_set_fill_rule(_ct, CAIRO_FILL_RULE_WINDING);
}
[self DPSnewpath];
}
- (void) DPSfill
@ -743,6 +744,7 @@
[self _setPath:YES];
cairo_fill(_ct);
}
[self DPSnewpath];
}
- (void) DPSinitclip
@ -760,6 +762,7 @@
[self _setPath:NO];
cairo_stroke(_ct);
}
[self DPSnewpath];
}
- (NSDictionary *) GSReadRect: (NSRect)r