Removed debug statements

This commit is contained in:
Ole Loots 2012-11-29 02:10:23 +01:00
parent b1018779f9
commit c374f7fcf0
1 changed files with 1 additions and 2 deletions

View File

@ -192,7 +192,6 @@ static void tb_txt_request_redraw(void *data, int x, int y, int w, int h)
{ {
GRECT area; GRECT area;
printf("data: %p\n", data);
struct s_toolbar * tb = (struct s_toolbar *)data; struct s_toolbar * tb = (struct s_toolbar *)data;
toolbar_get_grect(tb, TOOLBAR_URL_AREA, &area); toolbar_get_grect(tb, TOOLBAR_URL_AREA, &area);
@ -526,7 +525,7 @@ void toolbar_get_grect(struct s_toolbar *tb, short which, GRECT *dst)
dst->g_w = aes_toolbar[which].ob_width; dst->g_w = aes_toolbar[which].ob_width;
dst->g_h = aes_toolbar[which].ob_height; dst->g_h = aes_toolbar[which].ob_height;
printf("Toolbar get grect (%d): ", which); //printf("Toolbar get grect (%d): ", which);
dbg_grect("", dst); dbg_grect("", dst);
} }