aboutsummaryrefslogtreecommitdiff
path: root/src/table.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/table.cc')
-rw-r--r--src/table.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/table.cc b/src/table.cc
index ee93c5b0..900ae1a2 100644
--- a/src/table.cc
+++ b/src/table.cc
@@ -98,7 +98,7 @@ void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize)
}
}
- html->styleEngine->setNonCssProperties (&props);
+ html->styleEngine->setNonCssHints (&props);
/* The style for the cells */
table_cell_props = new CssPropertyList ();
@@ -159,14 +159,14 @@ void Html_tag_open_tr(DilloHtml *html, const char *tag, int tagsize)
}
}
- html->styleEngine->setNonCssProperties (&props);
+ html->styleEngine->setNonCssHints (&props);
((dw::Table*)S_TOP(html)->table)->addRow (html->styleEngine->style ());
if (a_Html_get_attr (html, tag, tagsize, "align")) {
S_TOP(html)->cell_text_align_set = TRUE;
a_Html_tag_set_align_attr (html, &props, tag, tagsize);
- html->styleEngine->setNonCssProperties (&props);
+ html->styleEngine->setNonCssHints (&props);
}
table_cell_props = new CssPropertyList (*S_TOP(html)->table_cell_props);
@@ -283,7 +283,7 @@ static void Html_tag_open_table_cell(DilloHtml *html,
}
}
- html->styleEngine->setNonCssProperties (&props);
+ html->styleEngine->setNonCssHints (&props);
if (html->styleEngine->style ()->textAlign
== TEXT_ALIGN_STRING)