You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/01/15 20:32:00 UTC

svn commit: r496452 - /myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/GridLayoutRenderer.java

Author: bommel
Date: Mon Jan 15 11:32:00 2007
New Revision: 496452

URL: http://svn.apache.org/viewvc?view=rev&rev=496452
Log:
(TOBAGO-19) implement 'fixed' in width calculation of panel renderers

Modified:
    myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/GridLayoutRenderer.java

Modified: myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/GridLayoutRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/GridLayoutRenderer.java?view=diff&rev=496452&r1=496451&r2=496452
==============================================================================
--- myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/GridLayoutRenderer.java (original)
+++ myfaces/tobago/trunk/theme/scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/GridLayoutRenderer.java Mon Jan 15 11:32:00 2007
@@ -694,6 +694,8 @@
             }
           }
           maxWidth = Math.max(maxWidth, max);
+        } else if (object instanceof UIGridLayout.Marker) {
+        // ignore 
         } else {
           // TODO is this needed?
           LOG.error("Object is not instanceof UIComponent " + object.getClass().getName());