You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ca...@apache.org on 2016/11/22 22:20:40 UTC

git commit: [flex-asjs] [refs/heads/develop] - Change private ro protected in some vars

Repository: flex-asjs
Updated Branches:
  refs/heads/develop b43f82b35 -> 11107053d


Change private ro protected in some vars


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

Branch: refs/heads/develop
Commit: 11107053d7586a54ac296f5035c58aa9968e9111
Parents: b43f82b
Author: Carlos Rovira <ca...@apache.org>
Authored: Tue Nov 22 23:20:35 2016 +0100
Committer: Carlos Rovira <ca...@apache.org>
Committed: Tue Nov 22 23:20:35 2016 +0100

----------------------------------------------------------------------
 .../projects/HTML/src/main/flex/org/apache/flex/html/H1.as       | 2 +-
 .../projects/HTML/src/main/flex/org/apache/flex/html/H2.as       | 4 ++--
 .../projects/HTML/src/main/flex/org/apache/flex/html/H3.as       | 4 ++--
 .../projects/HTML/src/main/flex/org/apache/flex/html/H4.as       | 4 ++--
 .../projects/HTML/src/main/flex/org/apache/flex/html/H5.as       | 4 ++--
 .../projects/HTML/src/main/flex/org/apache/flex/html/H6.as       | 4 ++--
 6 files changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/11107053/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H1.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H1.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H1.as
index ecd00b1..c198fa5 100644
--- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H1.as
+++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H1.as
@@ -84,7 +84,7 @@ package org.apache.flex.html
 		}
 		
         COMPILE::JS
-        private var textNode:Text;
+        protected var textNode:Text;
 		
         /**
          * @flexjsignorecoercion org.apache.flex.core.WrappedHTMLElement

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/11107053/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H2.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H2.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H2.as
index 641cce5..7e47987 100644
--- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H2.as
+++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H2.as
@@ -26,7 +26,7 @@ package org.apache.flex.html
     }
 
 	/**
-	 *  The H2 class represents an HTML <h1> element
+	 *  The H2 class represents an HTML <h2> element
      *  
 	 *  
 	 *  @langversion 3.0
@@ -84,7 +84,7 @@ package org.apache.flex.html
 		}
 		
         COMPILE::JS
-        private var textNode:Text;
+        protected var textNode:Text;
 		
         /**
          * @flexjsignorecoercion org.apache.flex.core.WrappedHTMLElement

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/11107053/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H3.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H3.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H3.as
index 71fd297..d8bc19f 100644
--- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H3.as
+++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H3.as
@@ -26,7 +26,7 @@ package org.apache.flex.html
     }
 
 	/**
-	 *  The H3 class represents an HTML <h1> element
+	 *  The H3 class represents an HTML <h3> element
      *  
 	 *  
 	 *  @langversion 3.0
@@ -84,7 +84,7 @@ package org.apache.flex.html
 		}
 		
         COMPILE::JS
-        private var textNode:Text;
+        protected var textNode:Text;
 		
         /**
          * @flexjsignorecoercion org.apache.flex.core.WrappedHTMLElement

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/11107053/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H4.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H4.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H4.as
index 25661ad..80673db 100644
--- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H4.as
+++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H4.as
@@ -26,7 +26,7 @@ package org.apache.flex.html
     }
 
 	/**
-	 *  The H4 class represents an HTML <h1> element
+	 *  The H4 class represents an HTML <h4> element
      *  
 	 *  
 	 *  @langversion 3.0
@@ -84,7 +84,7 @@ package org.apache.flex.html
 		}
 		
         COMPILE::JS
-        private var textNode:Text;
+        protected var textNode:Text;
 		
         /**
          * @flexjsignorecoercion org.apache.flex.core.WrappedHTMLElement

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/11107053/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H5.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H5.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H5.as
index c2a9f93..875e1ef 100644
--- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H5.as
+++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H5.as
@@ -26,7 +26,7 @@ package org.apache.flex.html
     }
 
 	/**
-	 *  The H5 class represents an HTML <h1> element
+	 *  The H5 class represents an HTML <h5> element
      *  
 	 *  
 	 *  @langversion 3.0
@@ -84,7 +84,7 @@ package org.apache.flex.html
 		}
 		
         COMPILE::JS
-        private var textNode:Text;
+        protected var textNode:Text;
 		
         /**
          * @flexjsignorecoercion org.apache.flex.core.WrappedHTMLElement

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/11107053/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H6.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H6.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H6.as
index fa46b07..406fd23 100644
--- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H6.as
+++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/H6.as
@@ -26,7 +26,7 @@ package org.apache.flex.html
     }
 
 	/**
-	 *  The H6 class represents an HTML <h1> element
+	 *  The H6 class represents an HTML <h6> element
      *  
 	 *  
 	 *  @langversion 3.0
@@ -84,7 +84,7 @@ package org.apache.flex.html
 		}
 		
         COMPILE::JS
-        private var textNode:Text;
+        protected var textNode:Text;
 		
         /**
          * @flexjsignorecoercion org.apache.flex.core.WrappedHTMLElement