[Laszlo-checkins] r9717 - openlaszlo/trunk/WEB-INF/lps/lfc/controllers
bargull@openlaszlo.org
bargull at openlaszlo.org
Tue Jun 17 09:59:08 PDT 2008
Author: bargull
Date: 2008-06-17 09:59:05 -0700 (Tue, 17 Jun 2008)
New Revision: 9717
Modified:
openlaszlo/trunk/WEB-INF/lps/lfc/controllers/LaszloAnimation.lzs
Log:
Change 20080617-bargull-BQ8 by bargull at dell--p4--2-53 on 2008-06-17 15:26:40
in /home/Admin/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: default initialization for "motion" was broken
New Features:
Bugs Fixed: LPP-6312
Technical Reviewer: max
QA Reviewer: mwilde
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
You need to initialize default-values before calling the super-class constructor.
Tests:
see bugreport
Modified: openlaszlo/trunk/WEB-INF/lps/lfc/controllers/LaszloAnimation.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/controllers/LaszloAnimation.lzs 2008-06-17 16:54:54 UTC (rev 9716)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/controllers/LaszloAnimation.lzs 2008-06-17 16:59:05 UTC (rev 9717)
@@ -34,8 +34,8 @@
dynamic class LzAnimator extends LzAnimatorGroup {
function LzAnimator ( parent:* , attrs:* , children:* = null, instcall:* = null) {
+ this.calcMethod = this.calcNextValue;
super(parent,attrs,children,instcall);
- this.calcMethod = this.calcNextValue;
}
More information about the Laszlo-checkins
mailing list