GridLayout.java (layoutContainer): Use number of rows to compute height of each cell...
* java/awt/GridLayout.java (layoutContainer): Use number of rows to compute height of each cell, and number of columns to compute width of each cell. * java/awt/Window.java (getOwnedWindows): Don't return null. * java/awt/FlowLayout.java (layoutContainer): Set width and height of component. Increment x using horizontal gap, not vertical gap. From-SVN: r49320
This commit is contained in:
parent
d09f7cb26b
commit
6c54b16cef
4 changed files with 15 additions and 5 deletions
|
@ -303,7 +303,7 @@ public class Window extends Container
|
|||
{
|
||||
// FIXME: return array containing all the windows this window currently
|
||||
// owns.
|
||||
return null;
|
||||
return new Window[0];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue