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 1FEC7188EB for ; Mon, 18 Apr 2016 13:26:27 +0000 (UTC) Received: (qmail 68437 invoked by uid 500); 18 Apr 2016 13:26:25 -0000 Delivered-To: apmail-flex-commits-archive@flex.apache.org Received: (qmail 68377 invoked by uid 500); 18 Apr 2016 13:26:25 -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 67451 invoked by uid 99); 18 Apr 2016 13:26:24 -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; Mon, 18 Apr 2016 13:26:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D6ADDE0615; Mon, 18 Apr 2016 13:26:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cdutz@apache.org To: commits@flex.apache.org Date: Mon, 18 Apr 2016 13:26:40 -0000 Message-Id: In-Reply-To: <470481eeb6984572a25b12e011bbde62@git.apache.org> References: <470481eeb6984572a25b12e011bbde62@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [17/50] git commit: [flex-asjs] [refs/heads/feature/maven-migration] - More typos More typos Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/51bbbac8 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/51bbbac8 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/51bbbac8 Branch: refs/heads/feature/maven-migration Commit: 51bbbac84fea710ead3055749743789856c29725 Parents: 1c5e98d Author: Harbs Authored: Wed Apr 6 20:35:02 2016 -0700 Committer: Harbs Committed: Wed Apr 6 20:35:02 2016 -0700 ---------------------------------------------------------------------- manualtests/XMLTest/build.xml | 2 +- manualtests/XMLTest/src/ReflectionTest.mxml | 40 -------------------- manualtests/XMLTest/src/XMLTest.mxml | 40 ++++++++++++++++++++ .../XMLTest/src/controllers/MyController.as | 6 +-- 4 files changed, 44 insertions(+), 44 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/build.xml ---------------------------------------------------------------------- diff --git a/manualtests/XMLTest/build.xml b/manualtests/XMLTest/build.xml index 6370e2d..5f352b6 100644 --- a/manualtests/XMLTest/build.xml +++ b/manualtests/XMLTest/build.xml @@ -21,7 +21,7 @@ - + http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/src/ReflectionTest.mxml ---------------------------------------------------------------------- diff --git a/manualtests/XMLTest/src/ReflectionTest.mxml b/manualtests/XMLTest/src/ReflectionTest.mxml deleted file mode 100644 index 27e97b5..0000000 --- a/manualtests/XMLTest/src/ReflectionTest.mxml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/src/XMLTest.mxml ---------------------------------------------------------------------- diff --git a/manualtests/XMLTest/src/XMLTest.mxml b/manualtests/XMLTest/src/XMLTest.mxml new file mode 100644 index 0000000..27e97b5 --- /dev/null +++ b/manualtests/XMLTest/src/XMLTest.mxml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/51bbbac8/manualtests/XMLTest/src/controllers/MyController.as ---------------------------------------------------------------------- diff --git a/manualtests/XMLTest/src/controllers/MyController.as b/manualtests/XMLTest/src/controllers/MyController.as index 81eb963..679d638 100644 --- a/manualtests/XMLTest/src/controllers/MyController.as +++ b/manualtests/XMLTest/src/controllers/MyController.as @@ -31,12 +31,12 @@ package controllers { if (app) { - this.app = app as ReflectionTest; + this.app = app as XMLTest; app.addEventListener("viewChanged", viewChangeHandler); } } - private var app:ReflectionTest; + private var app:XMLTest; private function viewChangeHandler(event:Event):void { @@ -44,7 +44,7 @@ package controllers public function setDocument(document:Object, id:String = null):void { - this.app = document as ReflectionTest; + this.app = document as XMLTest; app.addEventListener("viewChanged", viewChangeHandler); }