diff options
author | jcid <devnull@localhost> | 2008-10-24 16:59:01 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-10-24 16:59:01 +0200 |
commit | 78f638749225fccd6d2d912f5ceefb21835033b1 (patch) | |
tree | 9ff040c74ec658eeff34109dc0036489fa293d63 | |
parent | 098e2b5ef7e5e4fe8653924b334f2dbdd0a6e841 (diff) |
.
-rw-r--r-- | src/table.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/table.cc b/src/table.cc index 589f7e1e..a72411d6 100644 --- a/src/table.cc +++ b/src/table.cc @@ -34,7 +34,7 @@ using namespace dw::core::style; static void Html_tag_open_table_cell(DilloHtml *html, const char *tag, int tagsize, - dw::core::style::TextAlignType text_align); + dw::core::style::TextAlignType text_align); /* * <TABLE> @@ -301,8 +301,9 @@ static void Html_tag_open_table_cell(DilloHtml *html, if (S_TOP(html)->style->textAlign == TEXT_ALIGN_STRING) - col_tb = new dw::TableCell (((dw::Table*)S_TOP(html)->table)->getCellRef (), - prefs.limit_text_width); + col_tb = new dw::TableCell ( + ((dw::Table*)S_TOP(html)->table)->getCellRef (), + prefs.limit_text_width); else col_tb = new Textblock (prefs.limit_text_width); |