You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pi...@apache.org on 2014/11/28 01:21:01 UTC

[21/25] git commit: [flex-tlf] [refs/heads/develop] - The local var had the same name as the function argument. The Falcon compiler objects to this ; -)

The local var had the same name as the function argument. The Falcon compiler objects to this ;-)

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


Project: http://git-wip-us.apache.org/repos/asf/flex-tlf/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-tlf/commit/a9a1f9e1
Tree: http://git-wip-us.apache.org/repos/asf/flex-tlf/tree/a9a1f9e1
Diff: http://git-wip-us.apache.org/repos/asf/flex-tlf/diff/a9a1f9e1

Branch: refs/heads/develop
Commit: a9a1f9e11518a489af95f0eb781979c279e8c437
Parents: 41abfa4
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Thu Nov 20 18:42:09 2014 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Thu Nov 20 18:42:09 2014 +0100

----------------------------------------------------------------------
 textLayout/src/flashx/textLayout/elements/ParagraphElement.as | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/a9a1f9e1/textLayout/src/flashx/textLayout/elements/ParagraphElement.as
----------------------------------------------------------------------
diff --git a/textLayout/src/flashx/textLayout/elements/ParagraphElement.as b/textLayout/src/flashx/textLayout/elements/ParagraphElement.as
index 4ddd7c4..5f7cd09 100644
--- a/textLayout/src/flashx/textLayout/elements/ParagraphElement.as
+++ b/textLayout/src/flashx/textLayout/elements/ParagraphElement.as
@@ -222,9 +222,9 @@ package flashx.textLayout.elements
 				return;
 			}
 			var tbs:Vector.<TextBlock> = getTextBlocks();
-			for each(var tb:TextBlock in tbs)
+			for each(var tb_:TextBlock in tbs)
 			{
-				releaseTextBlockInternal(tb);
+				releaseTextBlockInternal(tb_);
 			}
 			//_textBlock = null;
 			if (_computedFormat)