]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixed wrong function name + fixes to tabsheet
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 6 Nov 2007 09:11:13 +0000 (09:11 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Tue, 6 Nov 2007 09:11:13 +0000 (09:11 +0000)
svn changeset:2718/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ui/ICustomLayout.java

index c1841e08110dbf8d2512975c52dd2ed9f88e6f79..1901a2b010afe72db1534b04faa08a5d12dd4ca1 100644 (file)
@@ -352,7 +352,7 @@ public class ICustomLayout extends ComplexPanel implements Paintable,
 
        public void iLayout() {
                if (!iLayoutJS(DOM.getFirstChild(getElement()))) {
-                       Util.runAncestorsLayout(this);
+                       Util.runDescendentsLayout(this);
                }
        }
 
@@ -362,7 +362,7 @@ public class ICustomLayout extends ComplexPanel implements Paintable,
         * containers in custom layout he/she can notify children after resize.
         */
        public void notifyChildrenOfSizeChange() {
-               Util.runAncestorsLayout(this);
+               Util.runDescendentsLayout(this);
        }
 
        public void onDetach() {