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/simpletablecell.cc | |
parent | f63ff25447f9b0face656cfd18d97130409b2c17 (diff) |
Extremes::adjustmentWidth may now (again) be used for extremes correction.
Diffstat (limited to 'dw/simpletablecell.cc')
-rw-r--r-- | dw/simpletablecell.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/dw/simpletablecell.cc b/dw/simpletablecell.cc index a5851680..feec46c8 100644 --- a/dw/simpletablecell.cc +++ b/dw/simpletablecell.cc @@ -99,15 +99,17 @@ void SimpleTableCell::correctRequisitionOfChild (Widget *child, } void SimpleTableCell::correctExtremesOfChild (Widget *child, - core::Extremes *extremes) + core::Extremes *extremes, + bool useAdjustmentWidth) { DBG_OBJ_ENTER ("resize", 0, "SimpleTableCell/correctExtremesOfChild", "%p, %d (%d) / %d (%d)", child, extremes->minWidth, extremes->minWidthIntrinsic, extremes->maxWidth, extremes->maxWidthIntrinsic); - Textblock::correctExtremesOfChild (child, extremes); - tablecell::correctCorrectedExtremesOfChild (this, child, extremes); + Textblock::correctExtremesOfChild (child, extremes, useAdjustmentWidth); + tablecell::correctCorrectedExtremesOfChild (this, child, extremes, + useAdjustmentWidth); DBG_OBJ_LEAVE (); } |