summaryrefslogtreecommitdiff
path: root/cocoa
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-09-04 18:20:24 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-09-04 18:20:24 +0000
commit5be6bd452d95405e6599f330fa30b0b771b81344 (patch)
treee09e37d431f16e027f52f64d2d1c7dced5433c34 /cocoa
parentbd94e21aed23d7fe264d700ef748942c09be3570 (diff)
downloadnetsurf-5be6bd452d95405e6599f330fa30b0b771b81344.tar.gz
netsurf-5be6bd452d95405e6599f330fa30b0b771b81344.tar.bz2
Remove gui_window_position_frame() definition from core and remove all implementations from front ends.
svn path=/trunk/netsurf/; revision=12711
Diffstat (limited to 'cocoa')
-rw-r--r--cocoa/gui.m7
1 files changed, 0 insertions, 7 deletions
diff --git a/cocoa/gui.m b/cocoa/gui.m
index 80c09d123..88b1908c3 100644
--- a/cocoa/gui.m
+++ b/cocoa/gui.m
@@ -163,13 +163,6 @@ void gui_window_scroll_visible(struct gui_window *g, int x0, int y0,
gui_window_set_scroll( g, x0, y0 );
}
-void gui_window_position_frame(struct gui_window *g, int x0, int y0,
- int x1, int y1)
-{
- const NSRect rect = cocoa_rect( x0, y0, x1, y1 );
- [[(BrowserViewController *)g view] setFrame: rect];
-}
-
void gui_window_get_dimensions(struct gui_window *g, int *width, int *height,
bool scaled)
{