[Laszlo-checkins] r11443 - in openlaszlo/trunk/WEB-INF/lps/lfc: core helpers
bargull@openlaszlo.org
bargull at openlaszlo.org
Tue Oct 14 12:50:24 PDT 2008
Author: bargull
Date: 2008-10-14 12:50:20 -0700 (Tue, 14 Oct 2008)
New Revision: 11443
Modified:
openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs
openlaszlo/trunk/WEB-INF/lps/lfc/helpers/LzState.lzs
Log:
Change 20081012-bargull-L8Y by bargull at dell--p4--2-53 on 2008-10-12 17:11:16
in /home/Admin/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: replace setAttribute calls
New Features:
Bugs Fixed: LPP-7164
Technical Reviewer: ptw
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
There is another "constant" call in LzAnimatorGroup which will be handled in a later change (atm I'm working on the animator classes).
Tests:
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs 2008-10-14 17:59:21 UTC (rev 11442)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/core/LzNode.lzs 2008-10-14 19:50:20 UTC (rev 11443)
@@ -1265,7 +1265,7 @@
}
if ( !this.datapath ){
- this.setAttribute('datapath', ".");
+ this.$lzc$set_datapath(".");
}
if ( ! this.__LZdelegates ){
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/helpers/LzState.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/helpers/LzState.lzs 2008-10-14 17:59:21 UTC (rev 11442)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/helpers/LzState.lzs 2008-10-14 19:50:20 UTC (rev 11443)
@@ -589,7 +589,7 @@
* @access private
*/
function __LZdetach ( aview ){
- aview.setAttribute("visible", false);
+ aview.$lzc$set_visible(false);
return aview;
}
@@ -597,7 +597,7 @@
* @access private
*/
function __LZretach ( aview ){
- aview.setAttribute("visible", true);
+ aview.$lzc$set_visible(true);
return aview;
}
More information about the Laszlo-checkins
mailing list