mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 11:51:27 +00:00
Small correction of last change.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@28862 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3c8eab0c49
commit
695a563092
2 changed files with 8 additions and 5 deletions
|
@ -1,3 +1,7 @@
|
|||
2009-10-20 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/winlib/WIN32GState.m: Small correction of last change.
|
||||
|
||||
2009-10-19 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Headers/gsc/GSGStateOps.h,
|
||||
|
|
|
@ -1129,7 +1129,7 @@ HBITMAP GSCreateBitmap(HDC hDC, int pixelsWide, int pixelsHigh,
|
|||
|
||||
- (void *) saveClip
|
||||
{
|
||||
if (clipregion)
|
||||
if (clipRegion)
|
||||
{
|
||||
HRGN newClipRegion;
|
||||
|
||||
|
@ -1138,17 +1138,16 @@ HBITMAP GSCreateBitmap(HDC hDC, int pixelsWide, int pixelsHigh,
|
|||
|
||||
return newClipRegion;
|
||||
}
|
||||
return clipregion;
|
||||
return clipRegion;
|
||||
}
|
||||
|
||||
- (void) restoreClip: (void *)savedClip
|
||||
{
|
||||
if (clipregion)
|
||||
if (clipRegion)
|
||||
{
|
||||
DeleteObject(clipRegion);
|
||||
}
|
||||
clipregion = savedClip;
|
||||
[self setClipMask];
|
||||
clipRegion = savedClip;
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
Loading…
Reference in a new issue