From 1b4818d1efcba37ec4563213c79ae408bda5b6ad Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 27 Jun 2009 01:02:00 +0000 Subject: Purge "colour" from the public API -- it's just confusing svn path=/trunk/libcss/; revision=8035 --- src/select/propset.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/select/propset.h') diff --git a/src/select/propset.h b/src/select/propset.h index 3862076..27860f0 100644 --- a/src/select/propset.h +++ b/src/select/propset.h @@ -56,7 +56,7 @@ static inline css_error set_letter_spacing( #define OUTLINE_COLOR_SHIFT 0 #define OUTLINE_COLOR_MASK 0x3 static inline css_error set_outline_color( - css_computed_style *style, uint8_t type, css_colour color) + css_computed_style *style, uint8_t type, css_color color) { uint8_t *bits; @@ -507,7 +507,7 @@ static inline css_error set_background_image( #define COLOR_MASK 0x1 static inline css_error set_color( css_computed_style *style, uint8_t type, - css_colour color) + css_color color) { uint8_t *bits = &style->bits[COLOR_INDEX]; @@ -637,7 +637,7 @@ static inline css_error set_left( #define BORDER_TOP_COLOR_MASK 0x3 static inline css_error set_border_top_color( css_computed_style *style, uint8_t type, - css_colour color) + css_color color) { uint8_t *bits = &style->bits[BORDER_TOP_COLOR_INDEX]; @@ -658,7 +658,7 @@ static inline css_error set_border_top_color( #define BORDER_RIGHT_COLOR_MASK 0x3 static inline css_error set_border_right_color( css_computed_style *style, uint8_t type, - css_colour color) + css_color color) { uint8_t *bits = &style->bits[BORDER_RIGHT_COLOR_INDEX]; @@ -679,7 +679,7 @@ static inline css_error set_border_right_color( #define BORDER_BOTTOM_COLOR_MASK 0x3 static inline css_error set_border_bottom_color( css_computed_style *style, uint8_t type, - css_colour color) + css_color color) { uint8_t *bits = &style->bits[BORDER_BOTTOM_COLOR_INDEX]; @@ -700,7 +700,7 @@ static inline css_error set_border_bottom_color( #define BORDER_LEFT_COLOR_MASK 0x3 static inline css_error set_border_left_color( css_computed_style *style, uint8_t type, - css_colour color) + css_color color) { uint8_t *bits = &style->bits[BORDER_LEFT_COLOR_INDEX]; @@ -763,7 +763,7 @@ static inline css_error set_line_height( #define BACKGROUND_COLOR_MASK 0x3 static inline css_error set_background_color( css_computed_style *style, uint8_t type, - css_colour color) + css_color color) { uint8_t *bits = &style->bits[BACKGROUND_COLOR_INDEX]; -- cgit v1.2.1