mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-22 01:02:05 +00:00
* Source/NSBitmapImageRep.m (-copyWithZone): Changed the call
from -copyWithZone: to -mutableCopyWithZone:. * Tests/gui/NSBitmapImageRep/testcopy.m: Test for this change Patch by Josh Freeman <tedge>. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@38301 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
29f4f8c512
commit
8da8a7add8
4 changed files with 45 additions and 1 deletions
|
@ -1762,7 +1762,7 @@ _set_bit_value(unsigned char *base, long msb_off, int bit_width,
|
|||
copy = (NSBitmapImageRep*)[super copyWithZone: zone];
|
||||
|
||||
copy->_properties = [_properties copyWithZone: zone];
|
||||
copy->_imageData = [_imageData copyWithZone: zone];
|
||||
copy->_imageData = [_imageData mutableCopyWithZone: zone];
|
||||
copy->_imagePlanes = NSZoneMalloc(zone, sizeof(unsigned char*) * MAX_PLANES);
|
||||
if (_imageData == nil)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue