Author: lou
Date: 2007-11-27 07:24:36 -0800 (Tue, 27 Nov 2007)
New Revision: 7383

Modified:
   
openlaszlo/trunk/docs/src/developers/tutorials/programs/calculator_display.lzx
Log:
Change 20071127-lou-b by [EMAIL PROTECTED] on 2007-11-27 11:17:03 AST
    in /Users/lou/src/svn/openlaszlo/trunk
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: fix example 14.14 in the calculator tutorial in the dguide so it 
compiles to DHTML

Bugs Fixed: LPP-5158

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

Details: an array was declared wrong.
change
this.allOperators = new array( '+', '-', '/', '*' );
to
this.allOperators = new Array( '+', '-', '/', '*' );
    
Tests: manual verify



Modified: 
openlaszlo/trunk/docs/src/developers/tutorials/programs/calculator_display.lzx
===================================================================
--- 
openlaszlo/trunk/docs/src/developers/tutorials/programs/calculator_display.lzx  
    2007-11-27 15:23:10 UTC (rev 7382)
+++ 
openlaszlo/trunk/docs/src/developers/tutorials/programs/calculator_display.lzx  
    2007-11-27 15:24:36 UTC (rev 7383)
@@ -15,7 +15,7 @@
             this.valueX = 0;
             this.lastInput = 'none';
             this.oldValue = false;
-            this.allOperators = new array( '+', '-', '/', '*' );
+            this.allOperators = new Array( '+', '-', '/', '*' );
             this.operator = '+';
             this.screen.setAttribute('text',  this.valueX.toString() );
         </method>


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

Reply via email to