diff options
author | Sebastian Geerken <devnull@localhost> | 2014-07-22 15:58:24 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-07-22 15:58:24 +0200 |
commit | b6aeac03a3e6c5f4ea7edaad9a42b79cf5a8fe10 (patch) | |
tree | ea92b6c09c3f254693f3ac609997e0e4743e907d /dw/simpletablecell.cc | |
parent | 6cfa2fc2dc1613cd6589cf76a3b425a71e17e7ce (diff) |
Adjust_table_min_width is also applied to table cells (to avoid inconsistent rendering).
Diffstat (limited to 'dw/simpletablecell.cc')
-rw-r--r-- | dw/simpletablecell.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dw/simpletablecell.cc b/dw/simpletablecell.cc index 083deaed..43dec92a 100644 --- a/dw/simpletablecell.cc +++ b/dw/simpletablecell.cc @@ -20,6 +20,7 @@ #include "simpletablecell.hh" +#include "table.hh" #include "../lout/debug.hh" namespace dw { @@ -38,6 +39,11 @@ SimpleTableCell::~SimpleTableCell() DBG_OBJ_DELETE (); } +bool SimpleTableCell::getAdjustMinWidth () +{ + return Table::getAdjustTableMinWidth (); +} + bool SimpleTableCell::isBlockLevel () { return false; |