You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cz...@apache.org on 2013/09/07 11:30:42 UTC

git commit: [flex-sdk] [refs/heads/develop] - FLEX-33706 added missing import

Updated Branches:
  refs/heads/develop a53dd0d3f -> ff50e6561


FLEX-33706 added missing import


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/ff50e656
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/ff50e656
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/ff50e656

Branch: refs/heads/develop
Commit: ff50e6561a8229278058b5c2370aeef5946c2573
Parents: a53dd0d
Author: cyrill.zadra <cy...@gmail.com>
Authored: Sat Sep 7 13:29:33 2013 +0400
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Sat Sep 7 13:29:33 2013 +0400

----------------------------------------------------------------------
 .../collections/Sort/SWFs/comps/ItemRendRETComp1.mxml     | 10 ++++++++--
 .../effects/AnimateColor/SWFs/AnimateColor_main.mxml      |  2 +-
 2 files changed, 9 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/ff50e656/mustella/tests/spark/collections/Sort/SWFs/comps/ItemRendRETComp1.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/spark/collections/Sort/SWFs/comps/ItemRendRETComp1.mxml b/mustella/tests/spark/collections/Sort/SWFs/comps/ItemRendRETComp1.mxml
index df1770c..3ee96f8 100644
--- a/mustella/tests/spark/collections/Sort/SWFs/comps/ItemRendRETComp1.mxml
+++ b/mustella/tests/spark/collections/Sort/SWFs/comps/ItemRendRETComp1.mxml
@@ -20,8 +20,14 @@
 <s:List xmlns:fx="http://ns.adobe.com/mxml/2009"
         xmlns:s="library://ns.adobe.com/flex/spark"
         xmlns:mx="library://ns.adobe.com/flex/mx"
-
- dataProvider="{new mx.collections.ArrayList(['1','2','3','12345678901234567890'])}" useVirtualLayout="false" >
+		dataProvider="{new mx.collections.ArrayList(['1','2','3','12345678901234567890'])}" useVirtualLayout="false" >
+		
+		<fx:Script>
+			<![CDATA[        
+				import mx.collections.ArrayList;
+			]]>
+		</fx:Script>
+		
          <s:itemRenderer>
              <fx:Component>
                  <s:ItemRenderer >

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/ff50e656/mustella/tests/spark/effects/AnimateColor/SWFs/AnimateColor_main.mxml
----------------------------------------------------------------------
diff --git a/mustella/tests/spark/effects/AnimateColor/SWFs/AnimateColor_main.mxml b/mustella/tests/spark/effects/AnimateColor/SWFs/AnimateColor_main.mxml
index 201910a..d0ad0f7 100644
--- a/mustella/tests/spark/effects/AnimateColor/SWFs/AnimateColor_main.mxml
+++ b/mustella/tests/spark/effects/AnimateColor/SWFs/AnimateColor_main.mxml
@@ -178,7 +178,7 @@
             if(this.actionscriptEffect.target == null)
                 return(false);
             
-            return(this.actionscriptEffect.target == this.actionscriptTarget);s
+            return(this.actionscriptEffect.target == this.actionscriptTarget);
         }