summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2005-08-22 22:49:52 +0000
committerJames Bursa <james@netsurf-browser.org>2005-08-22 22:49:52 +0000
commit4ce357f09bf1b2676a26c25c64f7d645dc4d5025 (patch)
tree555e10babf9151f1be6c97b4ed9162789283c1a1 /render/box.h
parent08e8ee3ed19642b9fbad9f3d8764a0befd7f2a58 (diff)
downloadnetsurf-4ce357f09bf1b2676a26c25c64f7d645dc4d5025.tar.gz
netsurf-4ce357f09bf1b2676a26c25c64f7d645dc4d5025.tar.bz2
[project @ 2005-08-22 22:49:52 by bursa]
More work towards frame targets: add target parameter to box_create(), and copy target down the box tree during construction. svn path=/import/netsurf/; revision=1853
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/box.h b/render/box.h
index 05d74cfe2..92a48379c 100644
--- a/render/box.h
+++ b/render/box.h
@@ -246,7 +246,7 @@ extern const char *TARGET_TOP;
struct box * box_create(struct css_style *style,
- char *href, char *title,
+ char *href, const char *target, char *title,
char *id, void *context);
void box_add_child(struct box *parent, struct box *child);
void box_insert_sibling(struct box *box, struct box *new_box);