You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by id...@apache.org on 2007/05/11 16:09:30 UTC

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

Author: idus
Date: Fri May 11 07:09:29 2007
New Revision: 537197

URL: http://svn.apache.org/viewvc?view=rev&rev=537197
Log:
TOBAGO-398: made sure favicons are displayed after opening a popup, too

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?view=diff&rev=537197&r1=537196&r2=537197
==============================================================================
--- 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 Fri May 11 07:09:29 2007
@@ -428,14 +428,16 @@
     this.width = (Integer) values[1];
     this.height = (Integer) values[2];
     this.focusId = (String) values[3];
+    this.applicationIcon = (String) values[4];
   }
 
   public Object saveState(FacesContext context) {
-    Object[] values = new Object[4];
+    Object[] values = new Object[5];
     values[0] = super.saveState(context);
     values[1] = width;
     values[2] = height;
     values[3] = focusId;
+    values[4] = applicationIcon;
     return values;
   }
 }