Gitweb links:
...log
http://git.netsurf-browser.org/netsurf.git/shortlog/b1018779f984ed1ac5766...
...commit
http://git.netsurf-browser.org/netsurf.git/commit/b1018779f984ed1ac57663b...
...tree
http://git.netsurf-browser.org/netsurf.git/tree/b1018779f984ed1ac57663b97...
The branch, mono/removing-windom-dependency has been updated
via b1018779f984ed1ac57663b97fa439602074d1d9 (commit)
from 1b93b72b9b731bb1844d5941e5165ff0ebc6711a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf.git/commitdiff/b1018779f984ed1ac57...
commit b1018779f984ed1ac57663b97fa439602074d1d9
Author: Ole Loots <ole(a)monochrom.net>
Commit: Ole Loots <ole(a)monochrom.net>
Removed debug statements
diff --git a/atari/toolbar.c b/atari/toolbar.c
index 50343aa..1c3a17c 100644
--- a/atari/toolbar.c
+++ b/atari/toolbar.c
@@ -195,20 +195,12 @@ static void tb_txt_request_redraw(void *data, int x, int y, int w,
int h)
printf("data: %p\n", data);
struct s_toolbar * tb = (struct s_toolbar *)data;
-
- printf("tb gx: %d\n", tb->area.g_x);
- printf("aes tb: %p\n", aes_toolbar);
-
-
toolbar_get_grect(tb, TOOLBAR_URL_AREA, &area);
area.g_x += x;
area.g_y += y;
area.g_w = w;
area.g_h = h;
- //guiwin_get_grect(tb->owner->win, GUIWIN_AREA_TOOLBAR, &area);
-
-
dbg_grect("toolbar redraw request", &area);
window_schedule_redraw_grect(tb->owner, &area);
@@ -379,7 +371,6 @@ static void toolbar_reflow(struct s_toolbar *tb)
// position throbber image:
- printf("throbber reflow for index: %d\n", tb->throbber.index);
throbber_form[tb->throbber.index].ob_x = tb->area.g_x +
aes_toolbar[TOOLBAR_THROBBER_AREA].ob_x;
@@ -406,11 +397,6 @@ void toolbar_redraw(struct s_toolbar *tb, GRECT *clip)
objc_draw_grect(aes_toolbar,0,8,clip);
- printf("rdrw throbber (%d) at: %d,%d, %d, %d\n", tb->throbber.index,
- throbber_form[tb->throbber.index].ob_x,
- throbber_form[tb->throbber.index].ob_y,
- throbber_form[tb->throbber.index].ob_width,
- throbber_form[tb->throbber.index].ob_height );
objc_draw_grect(&throbber_form[tb->throbber.index], 0, 1, clip);
GRECT url_area;
-----------------------------------------------------------------------
Summary of changes:
atari/toolbar.c | 14 --------------
1 files changed, 0 insertions(+), 14 deletions(-)
diff --git a/atari/toolbar.c b/atari/toolbar.c
index 50343aa..1c3a17c 100644
--- a/atari/toolbar.c
+++ b/atari/toolbar.c
@@ -195,20 +195,12 @@ static void tb_txt_request_redraw(void *data, int x, int y, int w,
int h)
printf("data: %p\n", data);
struct s_toolbar * tb = (struct s_toolbar *)data;
-
- printf("tb gx: %d\n", tb->area.g_x);
- printf("aes tb: %p\n", aes_toolbar);
-
-
toolbar_get_grect(tb, TOOLBAR_URL_AREA, &area);
area.g_x += x;
area.g_y += y;
area.g_w = w;
area.g_h = h;
- //guiwin_get_grect(tb->owner->win, GUIWIN_AREA_TOOLBAR, &area);
-
-
dbg_grect("toolbar redraw request", &area);
window_schedule_redraw_grect(tb->owner, &area);
@@ -379,7 +371,6 @@ static void toolbar_reflow(struct s_toolbar *tb)
// position throbber image:
- printf("throbber reflow for index: %d\n", tb->throbber.index);
throbber_form[tb->throbber.index].ob_x = tb->area.g_x +
aes_toolbar[TOOLBAR_THROBBER_AREA].ob_x;
@@ -406,11 +397,6 @@ void toolbar_redraw(struct s_toolbar *tb, GRECT *clip)
objc_draw_grect(aes_toolbar,0,8,clip);
- printf("rdrw throbber (%d) at: %d,%d, %d, %d\n", tb->throbber.index,
- throbber_form[tb->throbber.index].ob_x,
- throbber_form[tb->throbber.index].ob_y,
- throbber_form[tb->throbber.index].ob_width,
- throbber_form[tb->throbber.index].ob_height );
objc_draw_grect(&throbber_form[tb->throbber.index], 0, 1, clip);
GRECT url_area;
--
NetSurf Browser