[Mono-bugs] [Bug 37521][Nor] Changed - mcs does not allow access to protected events in subclasses
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Sun, 23 Feb 2003 05:13:40 -0500 (EST)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by martin@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=37521
--- shadow/37521 Sun Feb 23 03:06:26 2003
+++ shadow/37521.tmp.22948 Sun Feb 23 05:13:40 2003
@@ -76,6 +76,20 @@
------- Additional Comments From miguel@ximian.com 2003-02-23 03:06 -------
Martin,
I believe that this is a bug in the MemberCache. The code never
finds a match for the on-disk referenced assembly when looking up the
value of the event.
+
+------- Additional Comments From martin@ximian.com 2003-02-23 05:13 -------
+namespace Qt
+{
+ public class QtSupport
+ {
+ protected static event MousePressEvent mousePressEvent;
+
+ protected delegate void MousePressEvent ();
+ }
+
+}
+
+