Removed unused declarations.

svn path=/trunk/netsurf/; revision=13210
This commit is contained in:
Ole Loots 2011-11-30 22:37:32 +00:00
parent 6f699c05b0
commit 1f4ab6384c
1 changed files with 0 additions and 12 deletions

View File

@ -641,15 +641,3 @@ void unbind_global_events( void )
}
}
/* send redraw to all browser windows */
void snd_redraw( short x, short y, short w, short h)
{
struct gui_window * gw;
gw = window_list;
while( gw != NULL && gw->browser->type == 0 ) {
ApplWrite( _AESapid, WM_REDRAW, gw->root->handle->handle, x, y, w, h);
gw = gw->next;
}
return;
}