Changeset 35 for trunk/ImageDragArea.m

Show
Ignore:
Timestamp:
06/12/06 02:31:42 (3 years ago)
Author:
ngerakines
Message:

Fixing what I broke in the last checkin -- removed url drag support -- added VoxAccount and VoxCollection classes and gut code

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ImageDragArea.m

    r30 r35  
    2424 
    2525- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender { 
    26         /* NSLog(@"- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender - called\n"); */ 
     26        NSLog(@"- (BOOL)performDragOperation:(id <NSDraggingInfo>)sender - called\n"); 
    2727        TypePad *tp = [[[TypePad alloc] init] autorelease]; 
    2828        [tp dispatchAction:[sender draggingPasteboard]]; 
     
    3131} 
    3232 
     33- (void)dealloc { 
     34    [self unregisterDraggedTypes]; 
     35    [super dealloc]; 
     36} 
     37 
    3338@end