You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ca...@apache.org on 2013/05/01 19:14:00 UTC

git commit: [flex-asjs] - [CreateJS] fixed type coercion with flash.events.Event in Application

Updated Branches:
  refs/heads/develop cc79edbed -> 138cf91f9


[CreateJS] fixed type coercion with flash.events.Event in Application


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

Branch: refs/heads/develop
Commit: 138cf91f9b3b2f6fb1b8ab6f557e4318435c8ef7
Parents: cc79edb
Author: Carlos Rovira <ca...@apache.org>
Authored: Wed May 1 19:13:50 2013 +0200
Committer: Carlos Rovira <ca...@apache.org>
Committed: Wed May 1 19:13:50 2013 +0200

----------------------------------------------------------------------
 .../as/src/org/apache/flex/createjs/Application.as |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/138cf91f/frameworks/as/src/org/apache/flex/createjs/Application.as
----------------------------------------------------------------------
diff --git a/frameworks/as/src/org/apache/flex/createjs/Application.as b/frameworks/as/src/org/apache/flex/createjs/Application.as
index 99f690d..a9fdfec 100644
--- a/frameworks/as/src/org/apache/flex/createjs/Application.as
+++ b/frameworks/as/src/org/apache/flex/createjs/Application.as
@@ -59,7 +59,7 @@ package org.apache.flex.createjs
 			loaderInfo.addEventListener(flash.events.Event.INIT, initHandler);
 		}
 		
-		private function initHandler(event:Event):void
+		private function initHandler(event:flash.events.Event):void
 		{
 			MXMLDataInterpreter.generateMXMLProperties(this, MXMLProperties);