importing messaging-2008 branch to trunk.
[mono.git] / mcs / class / System.Web / System.Web.UI.HtmlControls / HtmlTableRow.cs
index cc7ad570f441658d3fdae371370242d8683d5e4a..b58ce168181c1346aee37bba4b397e64a9905729 100644 (file)
@@ -35,14 +35,10 @@ namespace System.Web.UI.HtmlControls {
        [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
        [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
        // attributes
-#if NET_2_0
-       [ParseChildren (true, "Cells", ChildControlType = typeof(Control))]
-#else  
-       [ParseChildren (true, "Cells")]
-#endif         
+       [ParseChildren (true, "Cells")] 
        public class HtmlTableRow : HtmlContainerControl {
 
-               private HtmlTableCellCollection _cells;
+               HtmlTableCellCollection _cells;
 
 
                public HtmlTableRow ()
@@ -156,7 +152,7 @@ namespace System.Web.UI.HtmlControls {
                        }
                }
 
-               private int Count {
+               int Count {
                        get { return (_cells == null) ? 0 : _cells.Count; }
                }