Changeset 3700
- Timestamp:
- 02/18/06 17:56:05 (3 years ago)
- Files:
-
- WiredClient/trunk/WCApplicationController.m (modified) (1 diff)
- WiredClient/trunk/WCConnectionController.m (modified) (1 diff)
- WiredClient/trunk/WCPreferences.m (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredClient/trunk/WCApplicationController.m
r3563 r3700 325 325 326 326 - (void)dailyTimer:(NSTimer *)timer { 327 [[NSNotificationCenter defaultCenter] postNotificationName:WCDateDidChange object:NULL];327 [[NSNotificationCenter defaultCenter] postNotificationName:WCDateDidChange]; 328 328 } 329 329 WiredClient/trunk/WCConnectionController.m
r3699 r3700 342 342 [connection setBookmark:bookmark]; 343 343 344 [[NSNotificationCenter defaultCenter] postNotificationName:WCBookmarksDidChange object:NULL];344 [[NSNotificationCenter defaultCenter] postNotificationName:WCBookmarksDidChange]; 345 345 } 346 346 } WiredClient/trunk/WCPreferences.m
r3660 r3700 312 312 if(![[_nickTextField stringValue] isEqualToString:[WCSettings objectForKey:WCNick]]) { 313 313 [WCSettings setObject:[_nickTextField stringValue] forKey:WCNick]; 314 [[NSNotificationCenter defaultCenter] postNotificationName:WCNickDidChange object:NULL];314 [[NSNotificationCenter defaultCenter] postNotificationName:WCNickDidChange]; 315 315 } 316 316 317 317 if(![[_statusTextField stringValue] isEqualToString:[WCSettings objectForKey:WCStatus]]) { 318 318 [WCSettings setObject:[_statusTextField stringValue] forKey:WCStatus]; 319 [[NSNotificationCenter defaultCenter] postNotificationName:WCStatusDidChange object:NULL];319 [[NSNotificationCenter defaultCenter] postNotificationName:WCStatusDidChange]; 320 320 } 321 321 … … 619 619 620 620 [WCSettings setObject:[data base64EncodedString] forKey:WCCustomIcon]; 621 [[NSNotificationCenter defaultCenter] postNotificationName:WCIconDidChange object:NULL];621 [[NSNotificationCenter defaultCenter] postNotificationName:WCIconDidChange]; 622 622 } 623 623 … … 931 931 932 932 [WCSettings setObject:@"" forKey:WCCustomIcon]; 933 [[NSNotificationCenter defaultCenter] postNotificationName:WCIconDidChange object:NULL];933 [[NSNotificationCenter defaultCenter] postNotificationName:WCIconDidChange]; 934 934 } 935 935
