aboutsummaryrefslogtreecommitdiff
path: root/src/table.cc
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-11-14 16:16:25 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-11-14 16:16:25 +0100
commitdecc2da631a67154778fa811ef12c888c8ee9db0 (patch)
tree02459e863c99519b668ca41e3aeaf571d58d60bd /src/table.cc
parent6d23a845404c5a9f75528fef3ecd1d19857b753e (diff)
setNonCssProperties() -> setNonCssHints()
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)