Removed debug output, text format changes...

svn path=/trunk/netsurf/; revision=13841
This commit is contained in:
Ole Loots 2012-04-09 11:33:34 +00:00
parent 96a2906298
commit ebd0f1366d
3 changed files with 13 additions and 14 deletions

View File

@ -780,7 +780,6 @@ void browser_redraw( struct gui_window * gw )
if( wf_top[0] == gw->root->handle->handle
&& wf_top[1] == _AESapid ){
printf("top redraw");
/* The window is on top, so there is no need to walk the */
/* AES rectangle list. */
for( i=0; i<b->redraw.areas_used; i++ ){

View File

@ -112,7 +112,7 @@ int window_create( struct gui_window * gw,
return( -1 );
memset( gw->root, 0, sizeof(struct s_gui_win_root) );
gw->root->title = malloc(atari_sysinfo.aes_max_win_title_len+1);
gw->root->handle = WindCreate( flags,40, 40, app.w, app.h );
gw->root->handle = WindCreate( flags, 40, 40, app.w, app.h );
if( gw->root->handle == NULL ) {
free( gw->root->title );
free( gw->root );