Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
0.8
-
None
Description
in lib/cocoa/src/server/TSocketServer.m
---------------------------------------- this may be wrong
- (void) dealloc {
[[NSNotificationCenter defaultCenter] removeObject:self];
---------------------------------------- this may be correct
- (void) dealloc {
[[NSNotificationCenter defaultCenter] removeObserver:self];
----------------------------------------
isn't it?