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 93A0B200BAC for ; Wed, 26 Oct 2016 11:01:23 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 92526160B0B; Wed, 26 Oct 2016 09:01:23 +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 DF942160AEE for ; Wed, 26 Oct 2016 11:01:22 +0200 (CEST) Received: (qmail 29398 invoked by uid 500); 26 Oct 2016 09:01:22 -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 29373 invoked by uid 99); 26 Oct 2016 09:01:21 -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; Wed, 26 Oct 2016 09:01:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C810EE3839; Wed, 26 Oct 2016 09:01:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: carlosrovira@apache.org To: commits@flex.apache.org Date: Wed, 26 Oct 2016 09:01:22 -0000 Message-Id: In-Reply-To: <4d54a3b123804f30bfa12954469fe329@git.apache.org> References: <4d54a3b123804f30bfa12954469fe329@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [02/20] git commit: [flex-asjs] [refs/heads/feature/mdl] - change name so the instance and static properties have different names. This was messing up reflection info archived-at: Wed, 26 Oct 2016 09:01:23 -0000 change name so the instance and static properties have different names. This was messing up reflection info Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/64d564f8 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/64d564f8 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/64d564f8 Branch: refs/heads/feature/mdl Commit: 64d564f8f90b177ff573215983cb9da6b0da29f5 Parents: 4c9ab06 Author: Alex Harui Authored: Tue Oct 25 12:59:38 2016 -0700 Committer: Alex Harui Committed: Tue Oct 25 13:00:42 2016 -0700 ---------------------------------------------------------------------- .../HTML/src/main/flex/org/apache/flex/html/SimpleAlert.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/64d564f8/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/SimpleAlert.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/SimpleAlert.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/SimpleAlert.as index 76160c0..0719036 100644 --- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/SimpleAlert.as +++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/SimpleAlert.as @@ -103,7 +103,7 @@ package org.apache.flex.html * @playerversion AIR 2.6 * @productversion FlexJS 0.0 */ - public function show(parent:Object) : void + public function showAlert(parent:Object) : void { parent.addElement(this); } @@ -125,7 +125,7 @@ package org.apache.flex.html { var alert:SimpleAlert = new SimpleAlert(); alert.message = message; - alert.show(parent); + alert.showAlert(parent); return alert; }