Changeset 3091

Show
Ignore:
Timestamp:
12/27/05 01:09:20 (3 years ago)
Author:
timothy
Message:

Duh! Make sure to pass userInfo along.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Additions/NSNotificationAdditions.m

    r3090 r3091  
    2424- (void) postNotificationOnMainThreadWithName:(NSString *) name object:(id) object userInfo:(NSDictionary *) userInfo { 
    2525        if( pthread_main_np() ) return [self postNotificationName:name object:object userInfo:userInfo]; 
    26         [self postNotificationOnMainThreadWithName:name object:object userInfo:nil waitUntilDone:NO]; 
     26        [self postNotificationOnMainThreadWithName:name object:object userInfo:userInfo waitUntilDone:NO]; 
    2727} 
    2828