From 7473f1625fc4c43f978c2b600ae5c31cf281afd7 Mon Sep 17 00:00:00 2001 From: Sven Weidauer Date: Fri, 4 Mar 2011 11:38:08 +0000 Subject: Remove unused function gui_window_redraw. svn path=/trunk/netsurf/; revision=11903 --- cocoa/gui.m | 6 ------ 1 file changed, 6 deletions(-) (limited to 'cocoa/gui.m') diff --git a/cocoa/gui.m b/cocoa/gui.m index 3fd58d7f0..694e26680 100644 --- a/cocoa/gui.m +++ b/cocoa/gui.m @@ -129,12 +129,6 @@ void gui_window_set_title(struct gui_window *g, const char *title) [(BrowserViewController *)g setTitle: [NSString stringWithUTF8String: title]]; } -void gui_window_redraw(struct gui_window *g, int x0, int y0, int x1, int y1) -{ - const NSRect rect = cocoa_rect( x0, y0, x1, y1 ); - [[(BrowserViewController *)g browserView] setNeedsDisplayInRect: rect]; -} - void gui_window_redraw_window(struct gui_window *g) { [[(BrowserViewController *)g browserView] setNeedsDisplay: YES]; -- cgit v1.2.3