Author: jcrowley
Date: 2007-07-05 05:43:56 -0700 (Thu, 05 Jul 2007)
New Revision: 5592

Modified:
   openlaszlo/branches/legals/WEB-INF/lps/lfc/views/LaszloView.lzs
Log:
Change 20070705-jcrowley-B by [EMAIL PROTECTED] on 2007-07-05 08:42:26 EDT
    in /Users/jcrowley/src/svn/openlaszlo/legals-alpha
    for http://svn.openlaszlo.org/openlaszlo/branches/legals

Summary: LzView didn't get included in my commit of the fix for LPP-3377.  I 
modified
        per Phil R.'s recommendations in his review, but forgot to create a new
        changeset to include the additional modified file.  This remedies that.

New Features:

Bugs Fixed:

Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:
    

Tests:



Modified: openlaszlo/branches/legals/WEB-INF/lps/lfc/views/LaszloView.lzs
===================================================================
--- openlaszlo/branches/legals/WEB-INF/lps/lfc/views/LaszloView.lzs     
2007-07-05 07:03:52 UTC (rev 5591)
+++ openlaszlo/branches/legals/WEB-INF/lps/lfc/views/LaszloView.lzs     
2007-07-05 12:43:56 UTC (rev 5592)
@@ -850,28 +850,10 @@
     return null;
 }
 
-/**
-  * Search up parent views for a named property. For now, returns when it finds
-  * the first one.
-  * 
-  * @param String prop: named property
-  * @return LzView: the first view which has a non-null value for 
<param>prop</param>
-  * or <i>null</i> if none is found
-  */
-function searchParents ( prop ){
-    var sview = this;
-    do{
-        sview = sview.immediateparent;
-        if (sview[ prop ] != null ){
-            return sview;
-        }
-    }while ( sview != canvas );
-}
-
 /** @access private */
 function searchimmediateparents ( prop ){
     if ( $debug ){
-        Debug.warn( "LzView.searchimmediateparents is deprecated. Use 
LzView.searchParents instead.");
+        Debug.warn( "LzView.searchimmediateparents is deprecated. Use 
LzNode.searchParents instead.");
     }
 
     return this.searchParents( prop );


_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins

Reply via email to