Author: atsushi
Date: 2005-11-15 00:34:29 -0500 (Tue, 15 Nov 2005)
New Revision: 53038

Modified:
   trunk/mcs/mcs/ChangeLog
   trunk/mcs/mcs/doc.cs
Log:
2005-11-15  Atsushi Enomoto  <[EMAIL PROTECTED]>

        * doc.cs : (GenerateTypeDocComment) Fields could be FixedField.
          Fixed bug #76705.  CS1569 was incorrectly commented out.



Modified: trunk/mcs/mcs/ChangeLog
===================================================================
--- trunk/mcs/mcs/ChangeLog     2005-11-15 04:48:53 UTC (rev 53037)
+++ trunk/mcs/mcs/ChangeLog     2005-11-15 05:34:29 UTC (rev 53038)
@@ -1,3 +1,8 @@
+2005-11-15  Atsushi Enomoto  <[EMAIL PROTECTED]>
+
+       * doc.cs : (GenerateTypeDocComment) Fields could be FixedField.
+         Fixed bug #76705.  CS1569 was incorrectly commented out.
+
 2005-11-14  Atsushi Enomoto  <[EMAIL PROTECTED]>
 
        * doc.cs : use Invocation.IsOverride() to do real override check.

Modified: trunk/mcs/mcs/doc.cs
===================================================================
--- trunk/mcs/mcs/doc.cs        2005-11-15 04:48:53 UTC (rev 53037)
+++ trunk/mcs/mcs/doc.cs        2005-11-15 05:34:29 UTC (rev 53038)
@@ -73,7 +73,7 @@
                                        c.GenerateDocComment (t);
 
                        if (t.Fields != null)
-                               foreach (Field f in t.Fields)
+                               foreach (FieldBase f in t.Fields)
                                        f.GenerateDocComment (t);
 
                        if (t.Events != null)
@@ -902,9 +902,9 @@
                                w.WriteWhitespace (Environment.NewLine);
                                w.WriteEndDocument ();
                                return true;
-//                     } catch (Exception ex) {
-//                             Report.Error (1569, "Error generating XML 
documentation file `{0}' (`{1}')", docfilename, ex.Message);
-//                             return false;
+                       } catch (Exception ex) {
+                               Report.Error (1569, "Error generating XML 
documentation file `{0}' (`{1}')", docfilename, ex.Message);
+                               return false;
                        } finally {
                                if (w != null)
                                        w.Close ();

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to