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/10/07 14:29:12 UTC

svn commit: r582619 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java

Author: bommel
Date: Sun Oct  7 05:29:11 2007
New Revision: 582619

URL: http://svn.apache.org/viewvc?rev=582619&view=rev
Log:
typo

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java?rev=582619&r1=582618&r2=582619&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPage.java Sun Oct  7 05:29:11 2007
@@ -271,7 +271,7 @@
             pageState.setClientWidth(width);
             pageState.setClientHeight(height);
           }
-          facesContext.getExternalContext().getRequestMap().put("tobago-page-clientDimension-with", width);
+          facesContext.getExternalContext().getRequestMap().put("tobago-page-clientDimension-width", width);
           facesContext.getExternalContext().getRequestMap().put("tobago-page-clientDimension-height", height);
         }
     } catch (Exception e) {
@@ -374,7 +374,7 @@
     } else {
       Integer requestWidth =
           (Integer) FacesContext.getCurrentInstance().getExternalContext().
-              getRequestMap().get("tobago-page-clientDimension-with");
+              getRequestMap().get("tobago-page-clientDimension-width");
       if (requestWidth != null) {
         return requestWidth;
       } else {