summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-11-30 22:37:32 +0000
committerOle Loots <ole@monochrom.net>2011-11-30 22:37:32 +0000
commit1f4ab6384c128d3aa00627bf51e704cce3484178 (patch)
treedf1d0c7822af78e2930b5d3acae507dbf00e2d23
parent6f699c05b042f35a0cdde39046668eca93809aa7 (diff)
downloadnetsurf-1f4ab6384c128d3aa00627bf51e704cce3484178.tar.gz
netsurf-1f4ab6384c128d3aa00627bf51e704cce3484178.tar.bz2
Removed unused declarations.
svn path=/trunk/netsurf/; revision=13210
-rwxr-xr-xatari/global_evnt.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/atari/global_evnt.c b/atari/global_evnt.c
index 72529da83..5c6da5448 100755
--- a/atari/global_evnt.c
+++ b/atari/global_evnt.c
@@ -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;
-}
-