You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2006/11/02 10:21:01 UTC

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

Author: weber
Date: Thu Nov  2 01:21:00 2006
New Revision: 470286

URL: http://svn.apache.org/viewvc?view=rev&rev=470286
Log:
working on TOBAGO-167 (Enable rendering popups by ajax request)
variable renaming

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

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPopup.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPopup.java?view=diff&rev=470286&r1=470285&r2=470286
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPopup.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIPopup.java Thu Nov  2 01:21:00 2006
@@ -60,9 +60,9 @@
 
   private void checkReset(FacesContext facesContext) {
     if (popupReset) {
-      ValueBinding reset = getValueBinding(ATTR_RENDERED);
-      if (reset != null) {
-        reset.setValue(facesContext, false);
+      ValueBinding vb = getValueBinding(ATTR_RENDERED);
+      if (vb != null) {
+        vb.setValue(facesContext, false);
       } else {
         setRendered(false);
       }