* EOControl/EOMutableKnownKeyDictionary.m

([EOMKKDInitializer-arrayMappingForKeys:]): Correct call to
        GDL2ObjectAtIndexWithImp.
        ([EOMKKDInitializer-subsetMappingForSourceDictionaryInitializer:
        sourceKeys:destinationKeys:]): Ditto.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@20732 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Ayers 2005-02-16 11:03:28 +00:00
parent e3a74b3562
commit d6075af06e
2 changed files with 9 additions and 3 deletions

View file

@ -7,6 +7,12 @@
Remove.
* EOControl/EOPriv.h/m (GDL2_shellPatternCharacterSet): Remove.
(GDL2PrivInit): Remove usage of GDL2_shellPatternCharacterSet.
* EOControl/EOMutableKnownKeyDictionary.m
([EOMKKDInitializer-arrayMappingForKeys:]): Correct call to
GDL2ObjectAtIndexWithImp.
([EOMKKDInitializer-subsetMappingForSourceDictionaryInitializer:
sourceKeys:destinationKeys:]): Ditto.
2005-02-15 David Ayers <d.ayers@inode.at>

View file

@ -270,7 +270,7 @@ RCS_ID("$Id$")
for (i = 0; i < keyCount; i++)
{
NSString *key = GDL2AddObjectWithImp(keys,objectAtIndexIMP,i);
NSString *key = GDL2ObjectAtIndexWithImp(keys,objectAtIndexIMP,i);
int destinationIndex = EOMKKDInitializer_indexForKeyWithImpPtr(self,&indexForKeyIMP,key);
@ -318,11 +318,11 @@ RCS_ID("$Id$")
int sourceIndex = 0;
sourceKey =
GDL2AddObjectWithImp(sourceKeys,sourceObjectAtIndexIMP,i);
GDL2ObjectAtIndexWithImp(sourceKeys,sourceObjectAtIndexIMP,i);
EOFLOGObjectLevelArgs(@"EOMKKD", @"sourceKey=%@", sourceKey);
destinationKey =
GDL2AddObjectWithImp(destinationKeys,destinationObjectAtIndexIMP,i);
GDL2ObjectAtIndexWithImp(destinationKeys,destinationObjectAtIndexIMP,i);
EOFLOGObjectLevelArgs(@"EOMKKD", @"destinationKey=%@", destinationKey);
destinationIndex =