Changeset 4000
- Timestamp:
- 03/29/06 19:26:52 (3 years ago)
- Files:
-
- WiredClient/trunk/English.lproj/PrivateChat.nib/classes.nib (modified) (1 diff)
- WiredClient/trunk/English.lproj/PrivateChat.nib/info.nib (modified) (1 diff)
- WiredClient/trunk/English.lproj/PrivateChat.nib/keyedobjects.nib (modified) (previous)
- WiredClient/trunk/English.lproj/PrivateChat.nib/objects.nib (modified) (previous)
- WiredClient/trunk/WCPrivateChat.h (modified) (2 diffs)
- WiredClient/trunk/WCPrivateChat.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
WiredClient/trunk/English.lproj/PrivateChat.nib/classes.nib
r3620 r4000 46 46 SUPERCLASS = WIWindowController; 47 47 }, 48 { 49 ACTIONS = {leave = id; }; 50 CLASS = WCPrivateChat; 51 LANGUAGE = ObjC; 52 SUPERCLASS = WCChat; 53 }, 48 {CLASS = WCPrivateChat; LANGUAGE = ObjC; SUPERCLASS = WCChat; }, 54 49 {CLASS = WISplitView; LANGUAGE = ObjC; SUPERCLASS = NSSplitView; }, 55 50 { WiredClient/trunk/English.lproj/PrivateChat.nib/info.nib
r3620 r4000 24 24 </array> 25 25 <key>IBSystem Version</key> 26 <string>8 G32</string>26 <string>8H14</string> 27 27 </dict> 28 28 </plist> WiredClient/trunk/WCPrivateChat.h
r3570 r4000 37 37 38 38 39 40 41 39 + (id)privateChatWithConnection:(WCServerConnection *)connection; 42 40 + (id)privateChatWithConnection:(WCServerConnection *)connection chatID:(unsigned int)cid; … … 44 42 + (id)privateChatWithConnection:(WCServerConnection *)connection chatID:(unsigned int)cid inviteUser:(WCUser *)user; 45 43 46 - (IBAction)leave:(id)sender;47 48 44 @end WiredClient/trunk/WCPrivateChat.m
r3974 r4000 197 197 #pragma mark - 198 198 199 - (IBAction)leave:(id)sender {200 [self close];201 }202 203 204 205 #pragma mark -206 207 199 - (NSDragOperation)tableView:(NSTableView *)tableView validateDrop:(id <NSDraggingInfo>)info proposedRow:(int)row proposedDropOperation:(NSTableViewDropOperation)operation { 208 200 if(row >= 0)
