Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Source/GSXib5KeyedUnarchiver.m
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ - (void) establishConnection
{
NSWarnMLog(@"setting trigger %@ to selector %@", selName, label);
//[destination setTarget: source]; // Not needed???
[destination performSelector: trigsel withObject: sel];
[destination performSelector: trigsel withObject: (id)sel];
}
else if ((SEL)nil == sel)
{
Expand Down
4 changes: 2 additions & 2 deletions Source/NSGraphicsContext.m
Original file line number Diff line number Diff line change
Expand Up @@ -345,12 +345,12 @@ - (id) initWithContextInfo: (NSDictionary *)info
* be protected from other threads.
*/
[contextLock lock];
methods = [[classMethodTable objectForKey: [self class]] pointerValue];
methods = [[classMethodTable objectForKey: (id)[self class]] pointerValue];
if (methods == 0)
{
methods = [[self class] _initializeMethodTable];
[classMethodTable setObject: [NSValue valueWithPointer: methods]
forKey: [self class]];
forKey: (id)[self class]];
}
[contextLock unlock];
}
Expand Down
Loading