diff options
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 (); } |