2009-02-26 Marek Habersack <mhabersack@novell.com>
authorMarek Habersack <grendel@twistedcode.net>
Thu, 26 Feb 2009 02:33:04 +0000 (02:33 -0000)
committerMarek Habersack <grendel@twistedcode.net>
Thu, 26 Feb 2009 02:33:04 +0000 (02:33 -0000)
* FileLevelControlBuilderAttribute.cs,
DataSourceCacheDurationConverter: hush the gmcs warnings

svn path=/trunk/mcs/; revision=128047

mcs/class/System.Web/System.Web.UI/ChangeLog
mcs/class/System.Web/System.Web.UI/DataSourceCacheDurationConverter.cs
mcs/class/System.Web/System.Web.UI/FileLevelControlBuilderAttribute.cs

index d26f028862487b812450061d9c9c5d57c8f85cdb..ef8c717bb3967e371124904546b02ea795e2be03 100644 (file)
@@ -1,3 +1,8 @@
+2009-02-26  Marek Habersack  <mhabersack@novell.com>
+
+       * FileLevelControlBuilderAttribute.cs,
+       DataSourceCacheDurationConverter: hush the gmcs warnings
+
 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
 
        * TemplateControl.cs: implement the other ReadStringResource method.
index 51abde11ce642c90e6bda21afb7e73a40a476b66..294e01675fdd2bcb5094974402a5cddeb7d4ab07 100644 (file)
@@ -41,19 +41,19 @@ namespace System.Web.UI
                public DataSourceCacheDurationConverter () {
                        throw new NotImplementedException ();
                }
-               public bool CanConvertFrom (Type sourceType) {
+               public new bool CanConvertFrom (Type sourceType) {
                        throw new NotImplementedException ();
                }
                public override bool CanConvertFrom (ITypeDescriptorContext context, Type sourceType) {
                        throw new NotImplementedException ();
                }
-               public bool CanConvertTo (Type destinationType) {
+               public new bool CanConvertTo (Type destinationType) {
                        throw new NotImplementedException ();
                }
                public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType) {
                        throw new NotImplementedException ();
                }
-               public Object ConvertFrom (Object value) {
+               public new Object ConvertFrom (Object value) {
                        throw new NotImplementedException ();
                }
                public override Object ConvertFrom (ITypeDescriptorContext context,
@@ -61,7 +61,7 @@ namespace System.Web.UI
                                                                                        Object value) {
                        throw new NotImplementedException ();
                }
-               public Object ConvertTo (Object value, Type destinationType) {
+               public new Object ConvertTo (Object value, Type destinationType) {
                        throw new NotImplementedException ();
                }
                public override Object ConvertTo (ITypeDescriptorContext context,
@@ -70,19 +70,19 @@ namespace System.Web.UI
                                                                                Type destinationType) {
                        throw new NotImplementedException ();
                }
-               public ICollection GetStandardValues () {
+               public new ICollection GetStandardValues () {
                        throw new NotImplementedException ();
                }
                public override StandardValuesCollection GetStandardValues (ITypeDescriptorContext context) {
                        throw new NotImplementedException ();
                }
-               public bool GetStandardValuesExclusive () {
+               public new bool GetStandardValuesExclusive () {
                        throw new NotImplementedException ();
                }
                public override bool GetStandardValuesExclusive (ITypeDescriptorContext context) {
                        throw new NotImplementedException ();
                }
-               public bool GetStandardValuesSupported () {
+               public new bool GetStandardValuesSupported () {
                        throw new NotImplementedException ();
                }
                public override bool GetStandardValuesSupported (ITypeDescriptorContext context) {
index 1f18b7218b52cc373f3bd895a822be876bc13c99..e5216b2208de94dfbc315d68b2e23f99bdf69745 100644 (file)
@@ -45,7 +45,7 @@ namespace System.Web.UI
                {
                        throw new NotImplementedException ();
                }
-               public static bool Equals (Object objA, Object objB)
+               public new static bool Equals (Object objA, Object objB)
                {
                        throw new NotImplementedException ();
                }