summaryrefslogtreecommitdiff
path: root/atari/browser.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-11-30 23:08:21 +0000
committerOle Loots <ole@monochrom.net>2011-11-30 23:08:21 +0000
commitb20f47262ba01db6a5786314d3457c54bcf471a8 (patch)
treeedf04914d3d3802830e98bb8531ad43d16feefe6 /atari/browser.c
parent9efb276f977a9db2f378930c213a5c1f21098b57 (diff)
downloadnetsurf-b20f47262ba01db6a5786314d3457c54bcf471a8.tar.gz
netsurf-b20f47262ba01db6a5786314d3457c54bcf471a8.tar.bz2
Open window by configured width,
removed unused variables svn path=/trunk/netsurf/; revision=13212
Diffstat (limited to 'atari/browser.c')
-rwxr-xr-xatari/browser.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/atari/browser.c b/atari/browser.c
index 7ab77cdd4..0c6d394a8 100755
--- a/atari/browser.c
+++ b/atari/browser.c
@@ -91,9 +91,6 @@ struct s_browser * browser_create
int lt, int w, int flex
)
{
- LGRECT cwork;
- COMPONENT * scrollv, * scrollh, * drawable;
-
CMP_BROWSER bnew = (CMP_BROWSER)malloc( sizeof(struct s_browser) );
if( bnew )
{
@@ -177,7 +174,6 @@ void browser_get_rect( struct gui_window * gw, enum browser_rect type, LGRECT *
void browser_update_rects(struct gui_window * gw )
{
short buff[8];
- LGRECT cmprect;
mt_WindGetGrect( &app, gw->root->handle, WF_CURRXYWH, (GRECT*)&buff[4]);
buff[0] = CM_REFLOW;
buff[1] = _AESapid;
@@ -223,7 +219,6 @@ static void __CDECL browser_evnt_destroy( COMPONENT * c, long buff[8], void * da
static void __CDECL browser_evnt_mbutton( COMPONENT * c, long buff[8], void * data)
{
- long lbuff[8];
short mx, my, dummy, mbut;
uint32_t tnow = clock()*1000 / CLOCKS_PER_SEC;
LGRECT cwork;
@@ -597,8 +592,6 @@ void browser_schedule_redraw(struct gui_window * gw, short x0, short y0, short x
{
assert( gw != NULL );
CMP_BROWSER b = gw->browser;
- int i;
- struct rect area;
LGRECT work;
if( y1 < 0 || x1 < 0 )
@@ -618,7 +611,6 @@ void browser_schedule_redraw(struct gui_window * gw, short x0, short y0, short x
static void browser_redraw_content( struct gui_window * gw, int xoff, int yoff,
struct rect * area )
{
- LGRECT work;
CMP_BROWSER b = gw->browser;
struct redraw_context ctx = {
@@ -839,7 +831,6 @@ void browser_redraw( struct gui_window * gw )
static void __CDECL browser_evnt_redraw( COMPONENT * c, long buff[8], void * data)
{
- short pxy[8];
struct gui_window * gw = (struct gui_window *) data;
CMP_BROWSER b = gw->browser;
LGRECT work, lclip;