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

[41/50] [abbrv] git commit: [flex-utilities] [refs/heads/master] - FLEX-34529: Removed a redundant label that was also causing a warning for binding.

FLEX-34529: Removed a redundant label that was also causing a warning for binding.


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

Branch: refs/heads/master
Commit: 279b88b84050ea08c12e37bc78fe1dd3a0a32739
Parents: 5f0719e
Author: Mark Kessler <Ke...@gmail.com>
Authored: Sun Sep 7 15:35:51 2014 -0400
Committer: Mark Kessler <Ke...@gmail.com>
Committed: Sun Sep 7 15:35:51 2014 -0400

----------------------------------------------------------------------
 .../src/spark/other/BidirectionalBinding1Example.mxml         | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/279b88b8/TourDeFlex/TourDeFlex3/src/spark/other/BidirectionalBinding1Example.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/other/BidirectionalBinding1Example.mxml b/TourDeFlex/TourDeFlex3/src/spark/other/BidirectionalBinding1Example.mxml
index ebe35cf..a30b544 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/other/BidirectionalBinding1Example.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/other/BidirectionalBinding1Example.mxml
@@ -23,7 +23,7 @@
 	xmlns:mx="library://ns.adobe.com/flex/mx">
 	
 	<s:Panel width="100%" height="100%"
-			 title="Bidirectional Binding"
+			 title="Bidirectional Binding 1"
 			 horizontalCenter="0"
 			 skinClass="skins.TDFPanelSkin">
 		<s:Label top="10" left="15" verticalAlign="justify" color="#323232" width="200"
@@ -34,10 +34,7 @@ so any change to the text2 value will also update the text1 value. "/>
 			<s:VGroup horizontalCenter="15" top="40">
 				<s:Label text="Enter Text:"/>
 				<s:TextInput id="text1" widthInChars="20" />
-				<s:TextInput id="text2" color="0xFF3366" widthInChars="20" 
-							 text="@{text1.text}"/>
-				<s:Label id="text3" color="0x009966"  
-							  text="@{text2.text}" />				
+				<s:TextInput id="text2" color="0xFF3366" widthInChars="20" text="@{text1.text}"/>
 			</s:VGroup>	
 		
 	</s:Panel>