Revision: 3692 http://vexi.svn.sourceforge.net/vexi/?rev=3692&view=rev Author: clrg Date: 2009-09-23 13:18:19 +0000 (Wed, 23 Sep 2009)
Log Message: ----------- Fix the fix (.java->.jpp sync) Modified Paths: -------------- trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp Modified: trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp =================================================================== --- trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp 2009-09-23 13:01:33 UTC (rev 3691) +++ trunk/core/org.vexi.core/src/org/vexi/core/Box.jpp 2009-09-23 13:18:19 UTC (rev 3692) @@ -458,7 +458,7 @@ private final void setConstrainInTree() { Box b=this; // FIXME: box tree is getting into inconsistent states with CONSTRAIN_DESCENDENT - while (b2.test(DISPLAY) && (b=b.parent)!=null)// && !b.test(CONSTRAIN_DESCENDENT)) { + while (b.test(DISPLAY) && (b=b.parent)!=null) {// && !b.test(CONSTRAIN_DESCENDENT)) { b.set(CONSTRAIN_DESCENDENT); } } @@ -470,9 +470,9 @@ private final void setPlace() { set(PLACE); setPlaceInTree(); } private final void setPlaceInTree() { - Box b2=this; - while (b2.test(DISPLAY) && (b2=b2.parent)!=null && !b2.test(PLACE_DESCENDENT)) { - b2.set(PLACE_DESCENDENT); + Box b=this; + while (b.test(DISPLAY) && (b=b.parent)!=null && !b.test(PLACE_DESCENDENT)) { + b.set(PLACE_DESCENDENT); } } private final void setParentPlace() { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ Vexi-svn mailing list Vexi-svn@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/vexi-svn