Changeset 4383
- Timestamp:
- 09/28/06 15:30:20 (2 years ago)
- Files:
-
- WiredClient/trunk/WCChat.m (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredClient/trunk/WCChat.m
r4359 r4383 42 42 #import "WCUserInfo.h" 43 43 44 #define WCPublicChatID 1 45 44 46 #define WCLastChatFormat @"WCLastChatFormat" 45 47 #define WCLastChatEncoding @"WCLastChatEncoding" … … 852 854 uid = [fields safeObjectAtIndex:1]; 853 855 854 if([cid unsignedIntValue] != [self chatID])856 if([cid unsignedIntValue] != WCPublicChatID && [cid unsignedIntValue] != [self chatID]) 855 857 return; 856 858 … … 1381 1383 1382 1384 - (unsigned int)chatID { 1383 return 1;1385 return WCPublicChatID; 1384 1386 } 1385 1387 … … 1473 1475 [_saveChatPlainTextEncodingPopUpButton selectItemWithTag:encoding]; 1474 1476 1475 if([self chatID] == 1) {1477 if([self chatID] == WCPublicChatID) { 1476 1478 name = [NSSWF:NSLS(@"%@ Public Chat", "Save chat file name (server)"), 1477 1479 [[self connection] name]];
