Another one's gone, another one's gone...
Another one bites the dust! Hey hey!
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user