Browse Source

2002-07-22 Tim Coleman <[email protected]>
* TypeConverter.cs: Fixed bad stubb function
GetConvertToException ()

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

Tim Coleman 23 years ago
parent
commit
e261e042a4

+ 4 - 0
mcs/class/System/System.ComponentModel/ChangeLog

@@ -1,3 +1,7 @@
+2002-07-22  Tim Coleman <[email protected]>
+	* TypeConverter.cs: Fixed bad stubb function
+		GetConvertToException ()
+
 2002-07-22  Tim Coleman <[email protected]>
 	* ComponentCollection.cs: Added reference to
 		ReadOnlyCollectionBase to make sure

+ 1 - 1
mcs/class/System/System.ComponentModel/TypeConverter.cs

@@ -136,7 +136,7 @@ public class TypeConverter
 	}
 
 	[MonoTODO]
-	protected Exception GetConvertToException (object value)
+	protected Exception GetConvertToException (object value, Type destinationType)
 	{
 		throw new NotImplementedException ();
 	}