mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-23 13:10:48 +00:00
* 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:
parent
e3a74b3562
commit
d6075af06e
2 changed files with 9 additions and 3 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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 =
|
||||
|
|
Loading…
Reference in a new issue