You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jb...@apache.org on 2012/12/19 16:35:32 UTC

svn commit: r1423891 - in /incubator/flex/sdk/branches/develop/frameworks/projects/airspark: manifest.xml src/spark/components/WindowedApplication.as

Author: jbalsas
Date: Wed Dec 19 15:35:31 2012
New Revision: 1423891

URL: http://svn.apache.org/viewvc?rev=1423891&view=rev
Log:
Fix for airspark falcon compilation FLEX-33302

Modified:
    incubator/flex/sdk/branches/develop/frameworks/projects/airspark/manifest.xml
    incubator/flex/sdk/branches/develop/frameworks/projects/airspark/src/spark/components/WindowedApplication.as

Modified: incubator/flex/sdk/branches/develop/frameworks/projects/airspark/manifest.xml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/frameworks/projects/airspark/manifest.xml?rev=1423891&r1=1423890&r2=1423891&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/frameworks/projects/airspark/manifest.xml (original)
+++ incubator/flex/sdk/branches/develop/frameworks/projects/airspark/manifest.xml Wed Dec 19 15:35:31 2012
@@ -30,7 +30,7 @@
  
     <!-- Flex 3 Graphics -->
     <component id="BitmapFill" class="mx.graphics.BitmapFill" lookupOnly="true"/>
-    <component id="BitmapResizeMode" class="mx.graphics.BitmapResizeMode" lookupOnly="true"/>
+    <component id="BitmapFillMode" class="mx.graphics.BitmapFillMode" lookupOnly="true"/>
     <component id="CompoundTransform" class="mx.geom.CompoundTransform" lookupOnly="true"/>
     <component id="GradientEntry" class="mx.graphics.GradientEntry" lookupOnly="true"/>
     <component id="LinearGradient" class="mx.graphics.LinearGradient" lookupOnly="true"/>

Modified: incubator/flex/sdk/branches/develop/frameworks/projects/airspark/src/spark/components/WindowedApplication.as
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/frameworks/projects/airspark/src/spark/components/WindowedApplication.as?rev=1423891&r1=1423890&r2=1423891&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/frameworks/projects/airspark/src/spark/components/WindowedApplication.as (original)
+++ incubator/flex/sdk/branches/develop/frameworks/projects/airspark/src/spark/components/WindowedApplication.as Wed Dec 19 15:35:31 2012
@@ -2789,7 +2789,7 @@ public class WindowedApplication extends
     {
         return function (e:FlexNativeWindowBoundsEvent):void
         {
-            const win:DisplayObject = e.target;
+            const win:DisplayObject = e.target as DisplayObject;
             html.width  = win.width;
             html.height = win.height;
         };