Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 50377200B6E for ; Sun, 21 Aug 2016 14:59:10 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 4ED74160A87; Sun, 21 Aug 2016 12:59:10 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id BE04E160A81 for ; Sun, 21 Aug 2016 14:59:09 +0200 (CEST) Received: (qmail 30816 invoked by uid 500); 21 Aug 2016 12:59:09 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 30808 invoked by uid 99); 21 Aug 2016 12:59:09 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 21 Aug 2016 12:59:09 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 894EAE040F; Sun, 21 Aug 2016 12:59:08 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: yishayw@apache.org To: commits@flex.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: [flex-asjs] [refs/heads/refactor-sprite] - Add flexjs wrapper GraphicShape Date: Sun, 21 Aug 2016 12:59:08 +0000 (UTC) archived-at: Sun, 21 Aug 2016 12:59:10 -0000 Repository: flex-asjs Updated Branches: refs/heads/refactor-sprite a107df0bf -> a47e05f14 Add flexjs wrapper GraphicShape Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/a47e05f1 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/a47e05f1 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/a47e05f1 Branch: refs/heads/refactor-sprite Commit: a47e05f140e21d8aa043e52ff5a80e0c38d0bb26 Parents: a107df0 Author: yishayw Authored: Sun Aug 21 15:59:03 2016 +0300 Committer: yishayw Committed: Sun Aug 21 15:59:03 2016 +0300 ---------------------------------------------------------------------- .../Graphics/src/main/flex/org/apache/flex/svg/GraphicShape.as | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a47e05f1/frameworks/projects/Graphics/src/main/flex/org/apache/flex/svg/GraphicShape.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/svg/GraphicShape.as b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/svg/GraphicShape.as index 4d113a4..2578cbb 100644 --- a/frameworks/projects/Graphics/src/main/flex/org/apache/flex/svg/GraphicShape.as +++ b/frameworks/projects/Graphics/src/main/flex/org/apache/flex/svg/GraphicShape.as @@ -40,6 +40,7 @@ package org.apache.flex.svg override protected function createElement():IFlexJSElement { element = new WrappedSprite(); + element.flexjs_wrapper = this; return element; }