Return-Path: X-Original-To: apmail-flex-commits-archive@www.apache.org Delivered-To: apmail-flex-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 345C1180D5 for ; Thu, 8 Oct 2015 18:51:10 +0000 (UTC) Received: (qmail 88432 invoked by uid 500); 8 Oct 2015 18:51:05 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 88374 invoked by uid 500); 8 Oct 2015 18:51:05 -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 87550 invoked by uid 99); 8 Oct 2015 18:51:04 -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; Thu, 08 Oct 2015 18:51:04 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2B29EE0F7F; Thu, 8 Oct 2015 18:51:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aharui@apache.org To: commits@flex.apache.org Date: Thu, 08 Oct 2015 18:51:38 -0000 Message-Id: <0c694c6ddc844f53b4a8eea8c5059490@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [36/50] [abbrv] git commit: [flex-asjs] [refs/heads/core_js_to_as] - - Fixed an invalid dependency of refrences to ILayoutParent which was renamed to ILayoutHost - Fixed an invalid dependency of refrences to ILayoutParent which was renamed to ILayoutHost Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/0a2fbbd5 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/0a2fbbd5 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/0a2fbbd5 Branch: refs/heads/core_js_to_as Commit: 0a2fbbd513b2f7b37a617cd6e2640565c7df07f1 Parents: 58c24a2 Author: Christofer Dutz Authored: Tue Sep 22 19:46:53 2015 +0200 Committer: Christofer Dutz Committed: Tue Sep 22 19:46:53 2015 +0200 ---------------------------------------------------------------------- .../HTML/js/src/org/apache/flex/html/beads/ListView.js | 6 +++--- .../src/org/apache/flex/html/beads/ScrollingContainerView.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0a2fbbd5/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ListView.js ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ListView.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ListView.js index 8f3ab66..89401f2 100644 --- a/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ListView.js +++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ListView.js @@ -17,7 +17,7 @@ goog.provide('org.apache.flex.html.beads.ListView'); goog.require('org.apache.flex.core.IBeadLayout'); goog.require('org.apache.flex.core.IBeadView'); goog.require('org.apache.flex.core.IItemRendererParent'); -goog.require('org.apache.flex.core.ILayoutParent'); +goog.require('org.apache.flex.core.ILayoutHost'); goog.require('org.apache.flex.core.ValuesManager'); goog.require('org.apache.flex.html.beads.ContainerView'); goog.require('org.apache.flex.html.beads.IListView'); @@ -30,7 +30,7 @@ goog.require('org.apache.flex.html.supportClasses.DataGroup'); /** * @constructor * @extends {org.apache.flex.html.beads.ContainerView} - * @implements {org.apache.flex.core.ILayoutParent} + * @implements {org.apache.flex.core.ILayoutHost} * @implements {org.apache.flex.html.beads.IListView} */ org.apache.flex.html.beads.ListView = function() { @@ -53,7 +53,7 @@ org.apache.flex.html.beads.ListView.prototype. FLEXJS_CLASS_INFO = { names: [{ name: 'ListView', qName: 'org.apache.flex.html.beads.ListView' }], - interfaces: [org.apache.flex.html.beads.IListView, org.apache.flex.core.ILayoutParent] }; + interfaces: [org.apache.flex.html.beads.IListView, org.apache.flex.core.ILayoutHost] }; /** http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/0a2fbbd5/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ScrollingContainerView.js ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ScrollingContainerView.js b/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ScrollingContainerView.js index 64ddfac..c4a7eac 100644 --- a/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ScrollingContainerView.js +++ b/frameworks/projects/HTML/js/src/org/apache/flex/html/beads/ScrollingContainerView.js @@ -41,7 +41,7 @@ goog.inherits( org.apache.flex.html.beads.ScrollingContainerView.prototype.FLEXJS_CLASS_INFO = { names: [{ name: 'ScrollingContainerView', qName: 'org.apache.flex.html.beads.ScrollingContainerView' }], - interfaces: [org.apache.flex.core.ILayoutParent] + interfaces: [org.apache.flex.core.ILayoutHost] };