You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2016/06/23 23:40:56 UTC

[3/3] git commit: [flex-asjs] [refs/heads/develop] - fix error handler

fix error handler


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

Branch: refs/heads/develop
Commit: 32f305337422b010f07ee63ec4328ce2d9b28c1f
Parents: 57a63b0
Author: Alex Harui <ah...@apache.org>
Authored: Thu Jun 23 16:22:40 2016 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Thu Jun 23 16:22:40 2016 -0700

----------------------------------------------------------------------
 .../Core/src/main/flex/org/apache/flex/core/CSSFontFaceBead.as     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/32f30533/frameworks/projects/Core/src/main/flex/org/apache/flex/core/CSSFontFaceBead.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/CSSFontFaceBead.as b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/CSSFontFaceBead.as
index dfae721..ef54d9e 100644
--- a/frameworks/projects/Core/src/main/flex/org/apache/flex/core/CSSFontFaceBead.as
+++ b/frameworks/projects/Core/src/main/flex/org/apache/flex/core/CSSFontFaceBead.as
@@ -131,7 +131,7 @@ package org.apache.flex.core
         COMPILE::SWF
         private function errorHandler(event:flash.events.Event):void
         {
-            trace("error loading font from: ", event.target.name);
+            trace("error loading font from: ", event.target.loader.name);
             removeTarget(event.target);
         }