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

@ -49,8 +49,8 @@ void OOFPosAbsLikeMgr::sizeAllocateChildren ()
int refWidth = container->getAvailWidth (true) - containerBoxDiffWidth ();
int refHeight = container->getAvailHeight (true) - containerBoxDiffHeight ();
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);
int x, y, width, ascent, descent;
calcPosAndSizeChildOfChild (child, refWidth, refHeight, &x, &y, &width,
@ -81,8 +81,8 @@ void OOFPosAbsLikeMgr::getSize (Requisition *containerReq, int *oofWidth,
int refWidth = container->getAvailWidth (true);
int refHeight = container->getAvailHeight (true);
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.
@ -110,8 +110,8 @@ void OOFPosAbsLikeMgr::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.