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=79762 --- shadow/79762 2007-06-01 13:24:44.000000000 -0400 +++ shadow/79762.tmp.13014 2007-06-01 14:16:10.000000000 -0400 @@ -14,6 +14,27 @@ TargetMilestone: 1_2 URL: Summary: PropertyGrid: inherited attributes not used to determine Category BugsThisDependsOn: 81797 is this even a PG bug? maybe System.ComponentModel? + +------- Additional Comments From [EMAIL PROTECTED] 2007-06-01 14:16 ------- +This patch should fix this issue once #81797 is fixed: + +Index: ReflectionPropertyDescriptor.cs +=================================================================== +--- ReflectionPropertyDescriptor.cs (revision 78441) ++++ ReflectionPropertyDescriptor.cs (working copy) +@@ -54,7 +54,7 @@ + } + + public ReflectionPropertyDescriptor (PropertyInfo +info) +- : base (info.Name, +(Attribute[])info.GetCustomAttributes (true)) ++ : base (info.Name, Attribute.GetCustomAttributes +(info, true)) + { + _member = info; + _componentType = _member.DeclaringType; + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
