Changeset 4990

Show
Ignore:
Timestamp:
10/24/07 01:13:54 (1 year ago)
Author:
morris
Message:

Remove -draggingSourceOperationMaskForLocal:

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • WiredAdditions/trunk/WIOutlineView.m

    r4438 r4990  
    355355#pragma mark - 
    356356 
    357 - (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)local { 
    358         return [_tableViewManager draggingSourceOperationMaskForLocal:local]; 
    359 } 
    360  
    361  
    362  
    363357- (NSMenu *)menuForEvent:(NSEvent *)event { 
    364358        return [_tableViewManager menuForEvent:event defaultMenu:[super menuForEvent:event]]; 
  • WiredAdditions/trunk/WITableView.m

    r4438 r4990  
    355355#pragma mark - 
    356356 
    357 - (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)local { 
    358         return [_tableViewManager draggingSourceOperationMaskForLocal:local]; 
    359 } 
    360  
    361  
    362  
    363357- (NSMenu *)menuForEvent:(NSEvent *)event { 
    364358        return [_tableViewManager menuForEvent:event defaultMenu:[super menuForEvent:event]]; 
  • WiredAdditions/trunk/WITableViewManager.h

    r4438 r4990  
    114114 
    115115- (void)reloadData; 
    116 - (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)local; 
    117116- (NSMenu *)menuForEvent:(NSEvent *)event defaultMenu:(NSMenu *)menu; 
    118117- (NSRect)frameOfCellAtColumn:(NSInteger)column row:(NSInteger)row defaultFrame:(NSRect)frame; 
  • WiredAdditions/trunk/WITableViewManager.m

    r4814 r4990  
    10361036 
    10371037 
    1038 - (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)local { 
    1039         if(local) 
    1040                 return NSDragOperationEvery; 
    1041          
    1042         return NSDragOperationGeneric; 
    1043 } 
    1044  
    1045  
    1046  
    10471038- (NSMenu *)menuForEvent:(NSEvent *)event defaultMenu:(NSMenu *)menu { 
    10481039        NSInteger               row;