Author: hqm
Date: 2007-10-04 17:11:31 -0700 (Thu, 04 Oct 2007)
New Revision: 6731

Modified:
   openlaszlo/trunk/demos/amazon/amazon.lzx
   openlaszlo/trunk/demos/calendar/basepanel.lzx
Log:
Change 20071004-hqm-8 by [EMAIL PROTECTED] on 2007-10-04 19:22:03 EDT
    in /cygdrive/c/users/hqm/openlaszlo/trunk
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: fix a couple of warnings that now show up in dmoes

New Features:

Bugs Fixed:

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

Documentation:

Release Notes:

Details:

These views should not have been named "frame", as it aliases an attribute of 
view. 
Changed name of view to "myframe"
    

Tests:



Modified: openlaszlo/trunk/demos/amazon/amazon.lzx
===================================================================
--- openlaszlo/trunk/demos/amazon/amazon.lzx    2007-10-05 00:05:22 UTC (rev 
6730)
+++ openlaszlo/trunk/demos/amazon/amazon.lzx    2007-10-05 00:11:31 UTC (rev 
6731)
@@ -506,7 +506,7 @@
     <view name="dragsmall" visible="false">
         <attribute name="dragging" value="false"/>
         <view name="img" x="12" y="5" width="50" height="50" clip="true" 
opacity="0.7"/>
-        <view name="frame" resource="dragframe" x="${parent.img.x-12}" 
y="${parent.img.y-5}"/>
+        <view name="myframe" resource="dragframe" x="${parent.img.x-12}" 
y="${parent.img.y-5}"/>
 
         <dragstate name="drag"/>
 

Modified: openlaszlo/trunk/demos/calendar/basepanel.lzx
===================================================================
--- openlaszlo/trunk/demos/calendar/basepanel.lzx       2007-10-05 00:05:22 UTC 
(rev 6730)
+++ openlaszlo/trunk/demos/calendar/basepanel.lzx       2007-10-05 00:11:31 UTC 
(rev 6731)
@@ -5,7 +5,7 @@
     <!-- ============================================================== -->
     <class name="basepanel" height="100" width="100">
         <!-- VIEWS -->
-        <view name="frame" width="100%" height="100%">
+        <view name="myframe" width="100%" height="100%">
             <view name="top" width="${parent.width}" height="19" >
                 <view name="l" resource="tpLft" x="-1"  y="-1"/>
                 <view name="m" resource="tpMdl" stretches="width"
@@ -49,7 +49,7 @@
 
         <!-- this is currently unused, but allows for coloriation of panel -->
         <method name="transformto" args="tm">
-                frame.setColorTransform(tm);
+                myframe.setColorTransform(tm);
         </method>
         
         <method name="setWindowTitle" args="s">
@@ -59,7 +59,7 @@
     </class>
 </library>
 <!-- * X_LZ_COPYRIGHT_BEGIN ***************************************************
-* Copyright 2001-2006 Laszlo Systems, Inc.  All Rights Reserved.              *
+* Copyright 2001-2007 Laszlo Systems, Inc.  All Rights Reserved.              *
 * Use is subject to license terms.                                            *
 * X_LZ_COPYRIGHT_END ****************************************************** -->
 <!-- @LZX_VERSION@                                                         -->


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

Reply via email to