mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
Refactoring transform
This commit is contained in:
parent
9a23a0acd2
commit
89f97f1f96
1 changed files with 4 additions and 1 deletions
|
@ -725,6 +725,7 @@
|
|||
|
||||
- (NSMapTable *) processConnections: (NSArray *)connectionsArray
|
||||
withObjects: (NSXMLElement *)objects
|
||||
controllerId: (NSString *)src
|
||||
{
|
||||
NSMapTable *mapTable = [NSMapTable strongToWeakObjectsMapTable];
|
||||
if ([connectionsArray count] > 0)
|
||||
|
@ -827,7 +828,9 @@
|
|||
NSXMLElement *objects = [array objectAtIndex: 0]; // get the "objects" section
|
||||
NSString *src = [self findControllerIdIn: xmlIn
|
||||
objects: objects];
|
||||
NSMapTable *mapTable = [self processConnectionsWithObjects: objects];
|
||||
NSMapTable *mapTable = [self processConnections: connectionsArray
|
||||
withObjects: objects
|
||||
controllerId: src];
|
||||
[_identifierToSegueMap setObject: mapTable
|
||||
forKey: identifier];
|
||||
// Add to cache...
|
||||
|
|
Loading…
Reference in a new issue