diff options
author | Sebastian Geerken <devnull@localhost> | 2014-05-08 10:46:12 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-05-08 10:46:12 +0200 |
commit | a082cd402b23b61af22012af36de2df576708040 (patch) | |
tree | 8e84e71b4321aa4cdfcb31e2350efa5c0561f4a1 /dw/outofflowmgr.cc | |
parent | 2e341ea9f4cdf76a6311f97231b0e46b07c76173 (diff) |
Eliminated compiler warning (with RTFL messages turned off).
Diffstat (limited to 'dw/outofflowmgr.cc')
-rw-r--r-- | dw/outofflowmgr.cc | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/dw/outofflowmgr.cc b/dw/outofflowmgr.cc index ccf3f9ad..b9abebf2 100644 --- a/dw/outofflowmgr.cc +++ b/dw/outofflowmgr.cc @@ -382,18 +382,19 @@ int OutOfFlowMgr::SortedFloatsVector::findFirst (Textblock *textblock, DBG_OBJ_MSG_START_O (oofm); for (int i = 0; i < size(); i++) { - Float *f = get(i); DBG_OBJ_MSGF_O ("border", 2, oofm, "%d: (%p, i = %d/%d, y = %d/%d, s = (%d * (%d + %d)), " "%s, %s, ext = %d, GB = %p); widget at (%d, %d)", - i, f->getWidget (), f->getIndex (type), - f->sideSpanningIndex, f->yReq, f->yReal, - f->size.width, f->size.ascent, f->size.descent, - f->dirty ? "dirty" : "clean", - f->sizeChangedSinceLastAllocation ? "scsla" : "sNcsla", - f->externalIndex, f->generatingBlock, - f->getWidget()->getAllocation()->x, - f->getWidget()->getAllocation()->y); + i, get(i)->getWidget (), get(i)->getIndex (type), + get(i)->sideSpanningIndex, get(i)->yReq, get(i)->yReal, + get(i)->size.width, get(i)->size.ascent, + get(i)->size.descent, + get(i)->dirty ? "dirty" : "clean", + get(i)->sizeChangedSinceLastAllocation ? "scsla" + : "sNcsla", + get(i)->externalIndex, get(i)->generatingBlock, + get(i)->getWidget()->getAllocation()->x, + get(i)->getWidget()->getAllocation()->y); } DBG_OBJ_MSG_END_O (oofm); |