summaryrefslogtreecommitdiff
path: root/src/table.cc
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-11-10 21:37:44 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-11-10 21:37:44 +0100
commit32c48f682dca94e500b6bd7663d59605b6fe8de1 (patch)
tree7a468466e01e0e6d2e7cf29f8563e4981e4d316b /src/table.cc
parentf7f95cc95e28d829a88fa083a03aa27d2d5f33d5 (diff)
wording
Diffstat (limited to 'src/table.cc')
-rw-r--r--src/table.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table.cc b/src/table.cc
index 835b3a2b..3f4ddc69 100644
--- a/src/table.cc
+++ b/src/table.cc
@@ -84,7 +84,7 @@ void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize)
props.set (CssProperty::CSS_PROPERTY_TEXT_ALIGN, TEXT_ALIGN_CENTER);
}
- /** \todo figure out how to implement shaded colors with CSS */
+ /** \todo figure out how to handle shaded colors with CSS */
props.set (CssProperty::CSS_PROPERTY_BORDER_COLOR, 0x000000);
if ((attrbuf = a_Html_get_attr(html, tag, tagsize, "bgcolor"))) {
@@ -107,7 +107,7 @@ void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize)
table_cell_props->set (CssProperty::CSS_PROPERTY_BORDER_WIDTH, 1);
if (cellpadding != -1)
table_cell_props->set (CssProperty::CSS_PROPERTY_PADDING, cellpadding);
- /** \todo figure out how to implement shaded colors with CSS */
+ /** \todo figure out how to handle shaded colors with CSS */
table_cell_props->set (CssProperty::CSS_PROPERTY_BORDER_COLOR, 0x000000);
if (S_TOP(html)->table_cell_props)