-
Bug
-
Resolution: Fixed
-
P4
-
1.4.2
-
b08
-
x86
-
windows_xp
Name: rmT116609 Date: 03/01/2004
A DESCRIPTION OF THE REQUEST :
There are the following lines in the GridBagLayout:
/* Adjust the grid width and height */
for (px = curX + curWidth; r.width < px; r.width++);
for (py = curY + curHeight; r.height < py; r.height++);
These could be changed to:
/* Adjust the grid width and height */
px = curX + curWidth;
if(r.width < px){
r.width = px;
}
py = curY + curHeight
if(r.height < py){
r.height = py;
}
JUSTIFICATION :
These would improve some speed and use less CPU
(Incident Review ID: 241048)
======================================================================
A DESCRIPTION OF THE REQUEST :
There are the following lines in the GridBagLayout:
/* Adjust the grid width and height */
for (px = curX + curWidth; r.width < px; r.width++);
for (py = curY + curHeight; r.height < py; r.height++);
These could be changed to:
/* Adjust the grid width and height */
px = curX + curWidth;
if(r.width < px){
r.width = px;
}
py = curY + curHeight
if(r.height < py){
r.height = py;
}
JUSTIFICATION :
These would improve some speed and use less CPU
(Incident Review ID: 241048)
======================================================================
- relates to
-
JDK-6362754 GridBagLayout inefficiency
-
- Closed
-