summaryrefslogtreecommitdiff
path: root/src/table.cc
diff options
context:
space:
mode:
authorJeremy Henty <onepoint@starurchin.org>2009-05-09 09:19:17 +0100
committerJeremy Henty <onepoint@starurchin.org>2009-05-09 09:19:17 +0100
commitb28369bd805d8096ac3b417db0c9a1519cd241c0 (patch)
tree3dba4f6d3667c59d769e78ead3309905b8c8396a /src/table.cc
parent6d6b86b1ea3b6706d3c9c9ac4aecbe25c4c4fb69 (diff)
[mq]: replace-DW2TB-with-HT2TB
Diffstat (limited to 'src/table.cc')
-rw-r--r--src/table.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/table.cc b/src/table.cc
index e026fa57..ababe37f 100644
--- a/src/table.cc
+++ b/src/table.cc
@@ -96,7 +96,7 @@ void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize)
html->styleEngine->setNonCssHints (&props);
- DW2TB(html->dw)->addParbreak (0, html->styleEngine->wordStyle ());
+ HT2TB(html)->addParbreak (0, html->styleEngine->wordStyle ());
/* The style for the cells */
table_cell_props = new CssPropertyList ();
@@ -131,7 +131,7 @@ void Html_tag_open_table(DilloHtml *html, const char *tag, int tagsize)
S_TOP(html)->table_cell_props->ref ();
table = new dw::Table(prefs.limit_text_width);
- DW2TB(html->dw)->addWidget (table, html->styleEngine->style ());
+ HT2TB(html)->addWidget (table, html->styleEngine->style ());
S_TOP(html)->table_mode = DILLO_HTML_TABLE_MODE_TOP;
S_TOP(html)->cell_text_align_set = FALSE;
@@ -197,7 +197,7 @@ void Html_tag_open_tr(DilloHtml *html, const char *tag, int tagsize)
S_TOP(html)->table_mode = DILLO_HTML_TABLE_MODE_TR;
#else
- DW2TB(html->dw)->addParbreak (0, html->styleEngine->wordStyle ());
+ HT2TB(html)->addParbreak (0, html->styleEngine->wordStyle ());
#endif
}