You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2013/05/31 06:33:06 UTC

git commit: [flex-sdk] [refs/heads/develop] - changed to use in operator

Updated Branches:
  refs/heads/develop f230c8247 -> 138b2182a


changed to use in operator


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

Branch: refs/heads/develop
Commit: 138b2182a8769bd2e5f25ca8099b567db44a5014
Parents: f230c82
Author: Justin Mclean <jm...@apache.org>
Authored: Fri May 31 14:32:42 2013 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Fri May 31 14:32:42 2013 +1000

----------------------------------------------------------------------
 .../airspark/src/spark/components/Window.as        |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/138b2182/frameworks/projects/airspark/src/spark/components/Window.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/airspark/src/spark/components/Window.as b/frameworks/projects/airspark/src/spark/components/Window.as
index 725c3cf..c6472e6 100644
--- a/frameworks/projects/airspark/src/spark/components/Window.as
+++ b/frameworks/projects/airspark/src/spark/components/Window.as
@@ -1774,7 +1774,7 @@ public class Window extends SkinnableContainer implements IWindow
         init.type = _type;
         init.systemChrome = _systemChrome;
         init.transparent = _transparent;
-		if (init.hasOwnProperty("renderMode"))
+		if ("renderMode" in init)
        		init["renderMode"] = _renderMode;
         return init;        
     }