mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
fix keyed decoding of identity affine transform
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36425 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
983edbe0ef
commit
acf7b640fc
3 changed files with 15 additions and 6 deletions
15
ChangeLog
15
ChangeLog
|
@ -1,3 +1,8 @@
|
|||
2013-03-25 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSAffineTransform.m:
|
||||
Fix decoding of keyed archive containing identity transform.
|
||||
|
||||
2013-03-23 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSXMLNode.m (-XMLStringWithOptions:): Revert change I
|
||||
|
@ -1098,16 +1103,16 @@
|
|||
|
||||
2012-04-07 13:54 theraven
|
||||
|
||||
* libs/base/trunk/Source/NSMethodSignature.m: Fix NSMethodSignature
|
||||
* Source/NSMethodSignature.m: Fix NSMethodSignature
|
||||
generating nonsense values when it encounters a type encoding
|
||||
including blocks.
|
||||
|
||||
2012-04-07 10:45 theraven
|
||||
|
||||
* libs/base/trunk/Source/GSSocketStream.m,
|
||||
libs/base/trunk/Source/NSAffineTransform.m,
|
||||
libs/base/trunk/Source/NSXMLDTDNode.m,
|
||||
libs/base/trunk/Tools/xmlparse.m: Fix the remaining compiler
|
||||
* Source/GSSocketStream.m:
|
||||
* Source/NSAffineTransform.m:
|
||||
* Source/NSXMLDTDNode.m:
|
||||
* Tools/xmlparse.m: Fix the remaining compiler
|
||||
warnings.
|
||||
|
||||
2012-04-07 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
|
|
@ -672,6 +672,10 @@ static NSAffineTransformStruct identityTransform = {
|
|||
return [self notImplemented: _cmd];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
replace = identityTransform;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -61,7 +61,7 @@ int main()
|
|||
|
||||
test_NSObject(@"NSAffineTransform", testObjs);
|
||||
test_NSCoding(testObjs);
|
||||
// test_keyed_NSCoding(testObjs);
|
||||
test_keyed_NSCoding(testObjs);
|
||||
test_NSCopying(@"NSAffineTransform", @"NSAffineTransform", testObjs, NO, YES);
|
||||
|
||||
testObj = [NSAffineTransform transform];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue