Another one's gone, another one's gone...

Another one bites the dust!  Hey hey!
This commit is contained in:
2025-08-09 12:13:06 -04:00
parent 04232a17c1
commit e9baf4e167
4 changed files with 35 additions and 37 deletions

View File

@ -42,7 +42,7 @@ OOFPosRelMgr::~OOFPosRelMgr ()
void OOFPosRelMgr::markSizeChange (int ref)
{
DBG_OBJ_ENTER ("resize.oofm", 0, "markSizeChange", "%d", ref);
Child *child = children->get(ref);
Child *child = children.at(ref);
DBG_OBJ_MSGF ("resize.oofm", 1, "generator = %p, externalIndex = %d",
child->generator, child->externalIndex);
child->generator->widgetRefSizeChanged (child->externalIndex);
@ -79,8 +79,8 @@ void OOFPosRelMgr::sizeAllocateChildren ()
{
DBG_OBJ_ENTER0 ("resize.oofm", 0, "sizeAllocateChildren");
for (int i = 0; i < children->size (); i++) {
Child *child = children->get(i);
for (int i = 0; i < children.size (); i++) {
Child *child = children.at(i);
Requisition childReq;
child->widget->sizeRequest (&childReq);
@ -106,8 +106,8 @@ void OOFPosRelMgr::getSize (Requisition *containerReq, int *oofWidth,
*oofWidth = *oofHeight = 0;
for (int i = 0; i < children->size (); i++) {
Child *child = children->get(i);
for (int i = 0; i < children.size (); i++) {
Child *child = children.at(i);
// Children whose position cannot be determined will be
// considered later in sizeAllocateEnd.
@ -132,8 +132,8 @@ void OOFPosRelMgr::getExtremes (Extremes *containerExtr, int *oofMinWidth,
{
*oofMinWidth = *oofMaxWidth = 0;
for (int i = 0; i < children->size (); i++) {
Child *child = children->get(i);
for (int i = 0; i < children.size (); i++) {
Child *child = children.at(i);
// Children whose position cannot be determined will be
// considered later in sizeAllocateEnd.