summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-08-02 19:19:43 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-08-02 19:19:43 +0000
commit0665611cc2ecca9e3796c252ebf79d7ab743a2f0 (patch)
treecd82a9c84e600d1bd2e757b8d08eb89f1db3b8dd /render/box.h
parent9d678ef7cde2fcdc1ddaa4bcc2a130e8ff07e31e (diff)
downloadnetsurf-0665611cc2ecca9e3796c252ebf79d7ab743a2f0.tar.gz
netsurf-0665611cc2ecca9e3796c252ebf79d7ab743a2f0.tar.bz2
Port to modified libcss API.
svn path=/trunk/netsurf/; revision=8997
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/render/box.h b/render/box.h
index 3134ea1a2..701329108 100644
--- a/render/box.h
+++ b/render/box.h
@@ -121,8 +121,8 @@ enum box_side { TOP, RIGHT, BOTTOM, LEFT };
* Container for box border details
*/
struct box_border {
- enum css_border_style style; /**< border-style */
- enum css_border_color color; /**< border-color type */
+ enum css_border_style_e style; /**< border-style */
+ enum css_border_color_e color; /**< border-color type */
css_color c; /**< border-color value */
int width; /**< border-width (pixels) */
};