importing messaging-2008 branch to trunk.
[mono.git] / mcs / class / System.Web / System.Web.UI.HtmlControls / HtmlTableRow.cs
index 7c3780f5b65b2f07690f3cd3fb381316260ef6c1..b58ce168181c1346aee37bba4b397e64a9905729 100644 (file)
@@ -38,7 +38,7 @@ namespace System.Web.UI.HtmlControls {
        [ParseChildren (true, "Cells")] 
        public class HtmlTableRow : HtmlContainerControl {
 
-               private HtmlTableCellCollection _cells;
+               HtmlTableCellCollection _cells;
 
 
                public HtmlTableRow ()
@@ -152,7 +152,7 @@ namespace System.Web.UI.HtmlControls {
                        }
                }
 
-               private int Count {
+               int Count {
                        get { return (_cells == null) ? 0 : _cells.Count; }
                }