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

svn commit: r500801 - /myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/FloatingPaneTag.java

Author: gmuellan
Date: Sun Jan 28 06:31:22 2007
New Revision: 500801

URL: http://svn.apache.org/viewvc?view=rev&rev=500801
Log:
Applied patch for issue: https://issues.apache.org/jira/browse/TOMAHAWK-870. Thx to Stefan Schuster.

Modified:
    myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/FloatingPaneTag.java

Modified: myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/FloatingPaneTag.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/FloatingPaneTag.java?view=diff&rev=500801&r1=500800&r2=500801
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/FloatingPaneTag.java (original)
+++ myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/custom/dojolayouts/FloatingPaneTag.java Sun Jan 28 06:31:22 2007
@@ -50,7 +50,7 @@
 
     public static final String TAG_PARAM_HasShadow             = "hasShadow";
 
-    public static final String TAG_PARAM_iconSrc               = "IconSrc";
+    public static final String TAG_PARAM_IconSrc               = "iconSrc";
 
     public static final String TAG_PARAM_Modal                 = "modal";
 
@@ -82,7 +82,7 @@
 
     private String             _hasShadow                      = null;
 
-    private String             _IconSrc                        = null;
+    private String             _iconSrc                        = null;
 
     private String             _modal                          = null;
 
@@ -129,7 +129,7 @@
         _title = null;
         // //release title end
         // //release IconSrc begin
-        _IconSrc = null;
+        _iconSrc = null;
         // //release IconSrc end
         // //release hasShadow begin
         _hasShadow = null;
@@ -185,9 +185,9 @@
         _hasShadow = hasShadow;
     }
 
-    public void seticonSrc(String IconSrc) {
-        _IconSrc = IconSrc;
-    }
+    public void setIconSrc(String iconSrc) {
+        _iconSrc = iconSrc;
+     }
 
     public void setModal(String modal) {
         _modal = modal;
@@ -208,7 +208,7 @@
         super.setStringProperty(component, TAG_PARAM_Title, _title);
         // //setProperties title end
         // //setProperties IconSrc begin
-        super.setStringProperty(component, TAG_PARAM_iconSrc, _IconSrc);
+        super.setStringProperty(component, TAG_PARAM_IconSrc, _iconSrc);
         // //setProperties IconSrc end
         // //setProperties hasShadow begin
         super.setBooleanProperty(component, TAG_PARAM_HasShadow, _hasShadow);