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 [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=75465 --- shadow/75465 2005-07-04 18:42:30.000000000 -0400 +++ shadow/75465.tmp.817 2006-03-19 15:25:32.000000000 -0500 @@ -1,14 +1,14 @@ Bug#: 75465 Product: Mono: Doctools Version: 1.1 -OS: +OS: unknown OS Details: Status: NEW Resolution: -Severity: +Severity: Unknown Priority: Normal Component: Console AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] TargetMilestone: --- @@ -46,6 +46,23 @@ How often does this happen? Every time. Additional Information: + +------- Additional Comments From [EMAIL PROTECTED] 2006-03-19 15:25 ------- +This also happens on private events. While this is a patch-fix (which +lets it at least ignore it), it doesn't handle the root cause that +EventInfo.GetAddMethod returns null for protected and private events. + +--- monodocer.cs (revision 58167) ++++ monodocer.cs (working copy) +@@ -1260,6 +1260,7 @@ + } + + static string GetMethodVisibility (MethodBase method) { ++ if (method == null) return null; + if (method.IsPublic) return "public"; + if (method.IsFamily) return "protected"; + return null; + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
