Author: hqm
Date: 2008-03-17 19:45:04 -0700 (Mon, 17 Mar 2008)
New Revision: 8303
Modified:
openlaszlo/trunk/demos/lzpix/classes/photocollection.lzx
openlaszlo/trunk/demos/lzpixmobile/classes/photocollection.lzx
Log:
Change 20080317-hqm-p by [EMAIL PROTECTED] on 2008-03-17 22:40:21 EDT
in /Users/hqm/openlaszlo/trunk4
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: fix lzpix class lookup
New Features:
Bugs Fixed: 5615
Technical Reviewer: max
QA Reviewer: (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
The lookup of "photoclass" does not need to be in the "lz" namespace, since
photoclass
is a var, and it is already set to point to an actual class, via the attribute
initializer
<attribute name="photoclass" value="lz.photo" when="once"/>
Tests:
lzpix app, select a group of thumbnails, and drag to clipboard area
Modified: openlaszlo/trunk/demos/lzpix/classes/photocollection.lzx
===================================================================
--- openlaszlo/trunk/demos/lzpix/classes/photocollection.lzx 2008-03-18
02:34:17 UTC (rev 8302)
+++ openlaszlo/trunk/demos/lzpix/classes/photocollection.lzx 2008-03-18
02:45:04 UTC (rev 8303)
@@ -26,7 +26,7 @@
if ( photopool.length ) {
r = photopool.pop();
} else {
- r = new lz.photoclass( this , { visible : false } );
+ r = new photoclass( this , { visible : false } );
new LzDatapath( r );
r.txt.setVisible( false )
}
Modified: openlaszlo/trunk/demos/lzpixmobile/classes/photocollection.lzx
===================================================================
--- openlaszlo/trunk/demos/lzpixmobile/classes/photocollection.lzx
2008-03-18 02:34:17 UTC (rev 8302)
+++ openlaszlo/trunk/demos/lzpixmobile/classes/photocollection.lzx
2008-03-18 02:45:04 UTC (rev 8303)
@@ -31,7 +31,7 @@
if ( photopool.length ) {
r = photopool.pop();
} else {
- r = new lz.photoclass( this , { visible : false } );
+ r = new photoclass( this , { visible : false } );
new LzDatapath( r );
r.txt.setVisible( false )
}
_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins