diff -r 773449708c84 -r 4ad59aaee882 javauis/lcdui_qt/src/javax/microedition/lcdui/ImageItemLayouter.java --- a/javauis/lcdui_qt/src/javax/microedition/lcdui/ImageItemLayouter.java Thu Sep 02 20:20:40 2010 +0300 +++ b/javauis/lcdui_qt/src/javax/microedition/lcdui/ImageItemLayouter.java Fri Sep 17 08:28:21 2010 +0300 @@ -38,20 +38,16 @@ } /** - * Creates LayoutObject for the given Item. + * Creates eSWT Control for the given Item. * - * @param item Item to layout - * @return LayoutObject + * @param item Item to create the Control + * @param parent parent to create the Control + * @return eSWT Control */ - LayoutObject getLayoutObject(Item item) - { - LayoutObject lo = formLayouter.getLayoutObject(item); - if(lo == null) - { - lo = new LayoutObject(item, eswtGetControl(formComposite, item)); - } - return lo; - } + Control createItemControl(Composite parent, Item item) + { + return eswtGetControl(parent, item); + } /** * Creates the eSWT CaptionedControl or Composite for this item.