You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by qu...@apache.org on 2013/10/08 06:15:54 UTC

git commit: [flex-sdk] [refs/heads/develop] - Reverting commit f1c3985 due to failing mustella test (gumbo/components/FTETextField/Properties/FTETextField_Properties_tester autoSize_left5)

Updated Branches:
  refs/heads/develop 320dea37d -> e3d52e485


Reverting commit f1c3985 due to failing mustella test (gumbo/components/FTETextField/Properties/FTETextField_Properties_tester autoSize_left5)


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

Branch: refs/heads/develop
Commit: e3d52e485c1063a71d3682750ac0c2eb833f193a
Parents: 320dea3
Author: quetwo <ni...@theflexgroup.org>
Authored: Tue Oct 8 00:15:27 2013 -0400
Committer: quetwo <ni...@theflexgroup.org>
Committed: Tue Oct 8 00:15:27 2013 -0400

----------------------------------------------------------------------
 frameworks/projects/spark/src/mx/core/FTETextField.as | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/e3d52e48/frameworks/projects/spark/src/mx/core/FTETextField.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/mx/core/FTETextField.as b/frameworks/projects/spark/src/mx/core/FTETextField.as
index 2843370..75a02c1 100644
--- a/frameworks/projects/spark/src/mx/core/FTETextField.as
+++ b/frameworks/projects/spark/src/mx/core/FTETextField.as
@@ -179,7 +179,7 @@ package mx.core
          *  which control what work validateNow() needs to do.
          */
         private static const FLAG_TEXT_SET:uint = 1 << 6;
-        public static const FLAG_HTML_TEXT_SET:uint = 1 << 7;
+        private static const FLAG_HTML_TEXT_SET:uint = 1 << 7;
         private static const FLAG_TEXT_LINES_INVALID:uint = 1 << 8;
         private static const FLAG_GRAPHICS_INVALID:uint = 1 << 9;
         
@@ -2437,7 +2437,7 @@ package mx.core
         /**
          *  @private
          */
-        public function clearFlag(mask:uint):void
+        private function clearFlag(mask:uint):void
         {
             flags &= ~mask;
         }
@@ -3655,7 +3655,6 @@ internal class HTMLHelper
         if (!styleSheet)
 		{
             htmlText = null;
-			textField.clearFlag(FTETextField.FLAG_HTML_TEXT_SET);
 		}
         
         if (!textFlow)