diff options
author | Sebastian Geerken <devnull@localhost> | 2015-01-05 14:55:34 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-01-05 14:55:34 +0100 |
commit | 2cefda0e49830d6ca348f37300bb53bffccb4568 (patch) | |
tree | f58e1e87408d21c77805cb29f17b791620c05878 /dw/alignedtablecell.cc | |
parent | f63ff25447f9b0face656cfd18d97130409b2c17 (diff) |
Extremes::adjustmentWidth may now (again) be used for extremes correction.
Diffstat (limited to 'dw/alignedtablecell.cc')
-rw-r--r-- | dw/alignedtablecell.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/dw/alignedtablecell.cc b/dw/alignedtablecell.cc index 3dbb73a2..e65bbf2c 100644 --- a/dw/alignedtablecell.cc +++ b/dw/alignedtablecell.cc @@ -109,15 +109,18 @@ void AlignedTableCell::correctRequisitionOfChild (Widget *child, } void AlignedTableCell::correctExtremesOfChild (Widget *child, - core::Extremes *extremes) + core::Extremes *extremes, + bool useAdjustmentWidth) { DBG_OBJ_ENTER ("resize", 0, "AlignedTableCell/correctExtremesOfChild", "%p, %d (%d) / %d (%d)", child, extremes->minWidth, extremes->minWidthIntrinsic, extremes->maxWidth, extremes->maxWidthIntrinsic); - AlignedTextblock::correctExtremesOfChild (child, extremes); - tablecell::correctCorrectedExtremesOfChild (this, child, extremes); + AlignedTextblock::correctExtremesOfChild (child, extremes, + useAdjustmentWidth); + tablecell::correctCorrectedExtremesOfChild (this, child, extremes, + useAdjustmentWidth); DBG_OBJ_LEAVE (); } |