[Laszlo-checkins] r8588 - openlaszlo/trunk/WEB-INF/lps/lfc/views

hqm@openlaszlo.org hqm at openlaszlo.org
Tue Apr 8 07:00:18 PDT 2008


Author: hqm
Date: 2008-04-08 07:00:17 -0700 (Tue, 08 Apr 2008)
New Revision: 8588

Modified:
   openlaszlo/trunk/WEB-INF/lps/lfc/views/LzInputText.lzs
Log:
Change 20080408-hqm-6 by hqm at badtzmaru.local on 2008-04-08 09:58:59 EDT
    in /Users/hqm/openlaszlo/trunk4
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: added optional arg declarations to make flex compiler happy

New Features:

Bugs Fixed:

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

Documentation:

Release Notes:

Details:

LzInputText._gotFocusEvent and _gotBlurEvent need an optional event arg declared

    

Tests:



Modified: openlaszlo/trunk/WEB-INF/lps/lfc/views/LzInputText.lzs
===================================================================
--- openlaszlo/trunk/WEB-INF/lps/lfc/views/LzInputText.lzs	2008-04-08 13:47:58 UTC (rev 8587)
+++ openlaszlo/trunk/WEB-INF/lps/lfc/views/LzInputText.lzs	2008-04-08 14:00:17 UTC (rev 8588)
@@ -156,14 +156,14 @@
 var _focused = false;
 
 /** @access private */
-function _gotFocusEvent(){
+function _gotFocusEvent(e=null){
     this._focused = true;
     var isprite:LzInputTextSprite = (this.sprite cast LzInputTextSprite);    
     isprite.gotFocus();
 }
 
 /** @access private */
-function _gotBlurEvent(){
+function _gotBlurEvent(e=null){
     this._focused = false;
     var isprite:LzInputTextSprite = (this.sprite cast LzInputTextSprite);    
     isprite.gotBlur();



More information about the Laszlo-checkins mailing list