aboutsummaryrefslogtreecommitdiff
path: root/src/table.cc
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2012-11-14 14:04:25 +0100
committerSebastian Geerken <devnull@localhost>2012-11-14 14:04:25 +0100
commit53e9245bcbaea2b7b4485369aa2289f1d102f26c (patch)
tree686a6e3125fca5c7889d2010633d697704bf33c9 /src/table.cc
parent7a991750e1f7bdfe6bd39f95343cc742d00c6596 (diff)
Cleaned up preferences.
Diffstat (limited to 'src/table.cc')
-rw-r--r--src/table.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table.cc b/src/table.cc
index 3487bab3..98157e76 100644
--- a/src/table.cc
+++ b/src/table.cc
@@ -421,9 +421,9 @@ static void Html_tag_content_table_cell(DilloHtml *html,
== TEXT_ALIGN_STRING)
col_tb = new dw::TableCell (
((dw::Table*)S_TOP(html)->table)->getCellRef (),
- prefs.limit_text_width, prefs.penalty_hyphen);
+ prefs.limit_text_width);
else
- col_tb = new Textblock (prefs.limit_text_width, prefs.penalty_hyphen);
+ col_tb = new Textblock (prefs.limit_text_width);
if (html->styleEngine->style()->borderCollapse == BORDER_MODEL_COLLAPSE){
Html_set_collapsing_border_model(html, col_tb);