aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/table.cc7
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);