aboutsummaryrefslogtreecommitdiffstats
path: root/CMImageView.m
diff options
context:
space:
mode:
authormltownsend <mltownsend@gmail.com>2008-11-10 19:56:30 +0000
committermltownsend <mltownsend@gmail.com>2008-11-10 19:56:30 +0000
commitc8146f9c28da66f02d47537e505a70725fb0c2b4 (patch)
treef967e1cadc654ea262f5fa7402572fdc2482d60d /CMImageView.m
parent87173093000bc5c36962451cc3e58c9aaac5ab50 (diff)
downloadsequelpro-c8146f9c28da66f02d47537e505a70725fb0c2b4.tar.gz
sequelpro-c8146f9c28da66f02d47537e505a70725fb0c2b4.tar.bz2
sequelpro-c8146f9c28da66f02d47537e505a70725fb0c2b4.zip
New XCode project
Diffstat (limited to 'CMImageView.m')
-rw-r--r--CMImageView.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/CMImageView.m b/CMImageView.m
index f3757879..0eb4c250 100644
--- a/CMImageView.m
+++ b/CMImageView.m
@@ -32,17 +32,17 @@
returns the path of the dragged file
*/
{
- return [NSString stringWithString:draggedFilePath];
+ return [NSString stringWithString:draggedFilePath];
}
- (void)concludeDragOperation:(id <NSDraggingInfo>)sender
{
- if ( draggedFilePath )
- [draggedFilePath release];
+ if ( draggedFilePath )
+ [draggedFilePath release];
- draggedFilePath = [[NSString stringWithString:[[[sender draggingPasteboard] propertyListForType:@"NSFilenamesPboardType"] objectAtIndex:0]] retain];
+ draggedFilePath = [[NSString stringWithString:[[[sender draggingPasteboard] propertyListForType:@"NSFilenamesPboardType"] objectAtIndex:0]] retain];
- [super concludeDragOperation:sender];
+ [super concludeDragOperation:sender];
}
@end