You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by ti...@apache.org on 2004/11/08 21:44:21 UTC

svn commit: rev 56971 - cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel

Author: tim
Date: Mon Nov  8 12:44:19 2004
New Revision: 56971

Modified:
   cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java
Log:
parent -> this.parent

Modified: cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java
==============================================================================
--- cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java	(original)
+++ cocoon/trunk/src/blocks/forms/java/org/apache/cocoon/forms/formmodel/AbstractWidget.java	Mon Nov  8 12:44:19 2004
@@ -121,7 +121,7 @@
      */
     // This method is final in order for other methods in this class to use this.parent
     public final Widget getParent() {
-        return parent;
+        return this.parent;
     }
 
     /** 
@@ -163,10 +163,10 @@
     }
 
     public WidgetState getCombinedState() {
-        if (parent == null) {
+        if (this.parent == null) {
             return this.state;
         } else {
-            return WidgetState.strictest(this.state, parent.getCombinedState());
+            return WidgetState.strictest(this.state, this.parent.getCombinedState());
         }
     }