Changeset 3664
- Timestamp:
- Oct 31, 2007, 5:23:56 PM (15 years ago)
- Location:
- trunk/macosx
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/macosx/Controller.m
r3660 r3664 2095 2095 } 2096 2096 2097 #warning look into2098 2097 - (void) setLimitGlobalEnabled: (id) sender 2099 2098 { … … 2261 2260 } 2262 2261 2263 #warning not working in Leopard2264 2262 - (BOOL) tableView: (NSTableView *) tableView writeRowsWithIndexes: (NSIndexSet *) indexes toPasteboard: (NSPasteboard *) pasteboard 2265 2263 { … … 2270 2268 { 2271 2269 [pasteboard declareTypes: [NSArray arrayWithObject: TORRENT_TABLE_VIEW_DATA_TYPE] owner: self]; 2272 [pasteboard setData: [NSKeyedArchiver archivedDataWithRootObject: indexes] 2273 forType: TORRENT_TABLE_VIEW_DATA_TYPE]; 2270 [pasteboard setData: [NSKeyedArchiver archivedDataWithRootObject: indexes] forType: TORRENT_TABLE_VIEW_DATA_TYPE]; 2274 2271 return YES; 2275 2272 } -
trunk/macosx/English.lproj/MainMenu.nib/info.nib
r3660 r3664 11 11 <key>IBOpenObjects</key> 12 12 <array> 13 <integer> 1326</integer>13 <integer>236</integer> 14 14 </array> 15 15 <key>IBSystem Version</key> -
trunk/macosx/TorrentCell.m
r3410 r3664 157 157 } 158 158 159 - (NSUInteger) hitTestForEvent: (NSEvent *) event inRect: (NSRect) cellFrame ofView: (NSView *) controlView 160 { 161 return NSCellHitContentArea; 162 } 163 159 164 - (void) drawInteriorWithFrame: (NSRect) cellFrame inView: (NSView *) controlView 160 165 { -
trunk/macosx/TorrentTableView.m
r3655 r3664 155 155 } 156 156 157 #warning not always working157 #warning not working on Leopard 158 158 - (void) mouseUp: (NSEvent *) event 159 159 {
Note: See TracChangeset
for help on using the changeset viewer.