diff options
author | Sebastian Geerken <devnull@localhost> | 2015-12-30 23:23:26 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-12-30 23:23:26 +0100 |
commit | 0a654860a53d5f44276d2637901feee5cba46747 (patch) | |
tree | 3f5f976633bda3145bd796aa4f7d19c06f7438a1 /dw/alignedtablecell.cc | |
parent | 91ae5fed75491a199a86372648956db16bcdaf7d (diff) |
SRDOP: fix floats within textblocks not necessarily allocating the availabke width.
Diffstat (limited to 'dw/alignedtablecell.cc')
-rw-r--r-- | dw/alignedtablecell.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dw/alignedtablecell.cc b/dw/alignedtablecell.cc index b5e321b7..25fca497 100644 --- a/dw/alignedtablecell.cc +++ b/dw/alignedtablecell.cc @@ -56,9 +56,9 @@ bool AlignedTableCell::isBlockLevel () return tablecell::isBlockLevel (); } -bool AlignedTableCell::mustBeWidenedToAvailWidth () +bool AlignedTableCell::usesMaxGeneratorWidth () { - return tablecell::mustBeWidenedToAvailWidth (); + return tablecell::usesMaxGeneratorWidth (); } int AlignedTableCell::getAvailWidthOfChild (Widget *child, bool forceValue) |