From b9ea37aca917f16b29a4c6b46ee7ed847cee19fb Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sat, 19 May 2007 15:12:02 +0000 Subject: [PATCH] a little cleanup --- macosx/DragOverlayWindow.m | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/macosx/DragOverlayWindow.m b/macosx/DragOverlayWindow.m index 9573306b1..04c47cd61 100644 --- a/macosx/DragOverlayWindow.m +++ b/macosx/DragOverlayWindow.m @@ -50,11 +50,6 @@ return self; } -- (void) dealloc -{ - [super dealloc]; -} - - (void) setFiles: (NSArray *) files { uint64_t size = 0; @@ -103,10 +98,8 @@ - (void) setURL: (NSString *) url { - #warning get globe icon - NSImage * icon = nil; - - [[self contentView] setOverlay: [NSImage imageNamed: @"Globe.tiff"] mainLine: NSLocalizedString(@"Web Address", "Drag overlay -> url") subLine: url]; + [[self contentView] setOverlay: [NSImage imageNamed: @"Globe.tiff"] + mainLine: NSLocalizedString(@"Web Address", "Drag overlay -> url") subLine: url]; } @end