X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Web%2FSystem.Web.UI.WebControls%2FSubMenuStyle.cs;h=670e813cc2b3feb679d647550c440cfd176f0e66;hb=468225a247b8897b2a4fa1e6bd7ffa32aa8c243b;hp=9556b46a1a8d80dc71f1905ffa880bfdcdfceec8;hpb=496dfbf9ec0fd3143e5dd560a863d916e56a52b8;p=mono.git diff --git a/mcs/class/System.Web/System.Web.UI.WebControls/SubMenuStyle.cs b/mcs/class/System.Web/System.Web.UI.WebControls/SubMenuStyle.cs index 9556b46a1a8..670e813cc2b 100644 --- a/mcs/class/System.Web/System.Web.UI.WebControls/SubMenuStyle.cs +++ b/mcs/class/System.Web/System.Web.UI.WebControls/SubMenuStyle.cs @@ -28,7 +28,6 @@ // Copyright (C) 2004 Novell, Inc (http://www.novell.com) // -#if NET_2_0 using System; using System.Web.UI; @@ -38,8 +37,8 @@ namespace System.Web.UI.WebControls { public class SubMenuStyle: Style, ICustomTypeDescriptor { - private const string HORZ_PADD = "HorizontalPadding"; - private const string VERT_PADD = "VerticalPadding"; + const string HORZ_PADD = "HorizontalPadding"; + const string VERT_PADD = "VerticalPadding"; public SubMenuStyle () { @@ -141,73 +140,73 @@ namespace System.Web.UI.WebControls } } - [MonoTODO] + [MonoTODO ("Not implemented")] System.ComponentModel.AttributeCollection ICustomTypeDescriptor.GetAttributes () { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] string ICustomTypeDescriptor.GetClassName () { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] string ICustomTypeDescriptor.GetComponentName () { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] TypeConverter ICustomTypeDescriptor.GetConverter () { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] EventDescriptor ICustomTypeDescriptor.GetDefaultEvent () { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] PropertyDescriptor ICustomTypeDescriptor.GetDefaultProperty () { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] object ICustomTypeDescriptor.GetEditor (Type editorBaseType) { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] EventDescriptorCollection ICustomTypeDescriptor.GetEvents () { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] EventDescriptorCollection ICustomTypeDescriptor.GetEvents (Attribute [] arr) { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties () { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] PropertyDescriptorCollection ICustomTypeDescriptor.GetProperties (Attribute [] arr) { throw new NotImplementedException (); } - [MonoTODO] + [MonoTODO("Not implemented")] object ICustomTypeDescriptor.GetPropertyOwner (PropertyDescriptor pd) { throw new NotImplementedException (); @@ -215,4 +214,3 @@ namespace System.Web.UI.WebControls } } -#endif