Quellcode durchsuchen

2007-05-31 Atsushi Enomoto <[email protected]>

	* PropertyDescriptor.cs : oops, wrong fix.


svn path=/trunk/mcs/; revision=78345
Atsushi Eno vor 18 Jahren
Ursprung
Commit
cdb36cfd31

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

@@ -1,3 +1,7 @@
+2007-05-31  Atsushi Enomoto  <[email protected]>
+
+	* PropertyDescriptor.cs : oops, wrong fix.
+
 2007-05-31  Atsushi Enomoto  <[email protected]>
 
 	* PropertyDescriptor.cs : call base. fix winforms tests.

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

@@ -168,7 +168,7 @@ namespace System.ComponentModel
 		[MonoNotSupported ("")]
 		protected override void FillAttributes (IList attributeList)
 		{
-			return base.FillAttributes (attributeList);
+			base.FillAttributes (attributeList);
 		}
 
 		[MonoNotSupported ("")]