Merge pull request #757 from mlintner/master
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / SubMenuStyle.cs
index 9556b46a1a8d80dc71f1905ffa880bfdcdfceec8..670e813cc2b3feb679d647550c440cfd176f0e66 100644 (file)
@@ -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