summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2008-01-28 13:48:59 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2008-01-28 13:48:59 +0000
commit416c81208b6dc90b63af35308294e316faced6d9 (patch)
treee742b9be4e780a116245e997bafff584e2958355 /render
parent58724040e507a1d54a296ef17bf86b920ce73e86 (diff)
downloadnetsurf-416c81208b6dc90b63af35308294e316faced6d9.tar.gz
netsurf-416c81208b6dc90b63af35308294e316faced6d9.tar.bz2
Make box dump show "gadget".
svn path=/trunk/netsurf/; revision=3796
Diffstat (limited to 'render')
-rw-r--r--render/box.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/render/box.c b/render/box.c
index a643127ea..9598a0cf4 100644
--- a/render/box.c
+++ b/render/box.c
@@ -546,6 +546,8 @@ void box_dump(FILE *stream, struct box *box, unsigned int depth)
fprintf(stream, "space ");
if (box->object)
fprintf(stream, "(object '%s') ", box->object->url);
+ if (box->gadget)
+ fprintf(stream, "(gadget) ");
if (box->style)
css_dump_style(box->style);
if (box->href)