Author: lupus
Date: 2005-03-29 04:20:57 -0500 (Tue, 29 Mar 2005)
New Revision: 42327
Modified:
trunk/mcs/class/corlib/System/ChangeLog
trunk/mcs/class/corlib/System/Delegate.cs
Log:
Tue Mar 29 11:47:19 CEST 2005 Paolo Molaro <[EMAIL PROTECTED]>
* Delegate.cs: allow IronPython 0.7 to compile.
Modified: trunk/mcs/class/corlib/System/ChangeLog
===================================================================
--- trunk/mcs/class/corlib/System/ChangeLog 2005-03-29 09:18:15 UTC (rev
42326)
+++ trunk/mcs/class/corlib/System/ChangeLog 2005-03-29 09:20:57 UTC (rev
42327)
@@ -1,3 +1,8 @@
+
+Tue Mar 29 11:47:19 CEST 2005 Paolo Molaro <[EMAIL PROTECTED]>
+
+ * Delegate.cs: allow IronPython 0.7 to compile.
+
2005-03-24 Miguel de Icaza <[EMAIL PROTECTED]>
* Delegate.cs: Add CreateDelegate with a target option, currently
Modified: trunk/mcs/class/corlib/System/Delegate.cs
===================================================================
--- trunk/mcs/class/corlib/System/Delegate.cs 2005-03-29 09:18:15 UTC (rev
42326)
+++ trunk/mcs/class/corlib/System/Delegate.cs 2005-03-29 09:20:57 UTC (rev
42327)
@@ -126,11 +126,12 @@
return CreateDelegate_internal (type, null, method);
}
- //
- // This method is internal because this exact signature does
- // not exist on the framework.
- //
- internal static Delegate CreateDelegate (Type type, object
target, MethodInfo method)
+#if NET_2_0
+ public
+#else
+ internal
+#endif
+ static Delegate CreateDelegate (Type type, object target,
MethodInfo method)
{
if (type == null)
throw new ArgumentNullException ("type");
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches