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 93139200C56 for ; Fri, 14 Apr 2017 22:47:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 91CA4160B8A; Fri, 14 Apr 2017 20:47:22 +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 E21E1160BAF for ; Fri, 14 Apr 2017 22:47:21 +0200 (CEST) Received: (qmail 39158 invoked by uid 500); 14 Apr 2017 20:47:20 -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 39028 invoked by uid 99); 14 Apr 2017 20:47:20 -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; Fri, 14 Apr 2017 20:47:20 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4223EDFE8F; Fri, 14 Apr 2017 20:47:20 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pent@apache.org To: commits@flex.apache.org Date: Fri, 14 Apr 2017 20:47:23 -0000 Message-Id: <54c7b39808e3458c88e0e3f0292d3c7b@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [4/8] git commit: [flex-asjs] [refs/heads/develop] - Sync Effects with layout changes. archived-at: Fri, 14 Apr 2017 20:47:22 -0000 Sync Effects with layout changes. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/d89a0109 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/d89a0109 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/d89a0109 Branch: refs/heads/develop Commit: d89a0109de12e7ae04acd05f9c94e23686a06565 Parents: 0fc2115 Author: Peter Ent Authored: Thu Apr 13 11:44:25 2017 -0400 Committer: Peter Ent Committed: Thu Apr 13 11:44:25 2017 -0400 ---------------------------------------------------------------------- .../src/main/flex/org/apache/flex/utils/MockLayoutHost.as | 10 ++++++++++ .../main/flex/org/apache/flex/utils/MockLayoutParent.as | 10 ++++++++++ 2 files changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/d89a0109/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutHost.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutHost.as b/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutHost.as index b7aaf8f..4b32bc9 100644 --- a/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutHost.as +++ b/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutHost.as @@ -33,5 +33,15 @@ package org.apache.flex.utils { return _contentView; } + + public function beforeLayout():void + { + + } + + public function afterLayout():void + { + + } } } http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/d89a0109/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutParent.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutParent.as b/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutParent.as index fe39f96..1da2b5a 100644 --- a/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutParent.as +++ b/frameworks/projects/Effects/src/main/flex/org/apache/flex/utils/MockLayoutParent.as @@ -48,6 +48,16 @@ package org.apache.flex.utils _layoutHost = new MockLayoutHost(source.getLayoutHost()); _source = source; } + + public function beforeLayout():void + { + // TODO ?? + } + + public function afterLayout():void + { + // TODO ?? + } public function get parent():IParent {