[project @ 2004-06-22 17:39:00 by bursa]

Remove unused and unimplemented gui_window_show() and gui_window_hide().

svn path=/import/netsurf/; revision=991
This commit is contained in:
James Bursa 2004-06-22 17:39:00 +00:00
parent fdaf72417a
commit a9365b5077
2 changed files with 0 additions and 6 deletions

View File

@ -28,8 +28,6 @@ gui_window *gui_create_browser_window(struct browser_window *bw,
struct browser_window *clone);
gui_window *gui_create_download_window(struct content *content);
void gui_window_destroy(gui_window* g);
void gui_window_show(gui_window* g);
void gui_window_hide(gui_window* g);
void gui_window_redraw(gui_window* g, unsigned long x0, unsigned long y0,
unsigned long x1, unsigned long y1);
void gui_window_redraw_window(gui_window* g);

View File

@ -207,10 +207,6 @@ void gui_window_destroy(gui_window* g)
free(g);
}
void gui_window_show(gui_window* g)
{
}
void gui_window_redraw(gui_window* g, unsigned long x0, unsigned long y0,
unsigned long x1, unsigned long y1)
{