[Monodevelop-patches-list] r2765 - trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding

Lluis Sanchez <lluis@ximian.com> lluis at mono-cvs.ximian.com
Fri Aug 19 11:56:13 EDT 2005


Author: lluis
Date: 2005-08-19 11:56:13 -0400 (Fri, 19 Aug 2005)
New Revision: 2765

Modified:
   trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/CSharpAmbience.cs
   trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
Log:
2005-08-19  Lluis Sanchez Gual  <lluis at novell.com>

	* CSharpAmbience.cs: Don't include the inheritance tree when converting
	an enum.



Modified: trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/CSharpAmbience.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/CSharpAmbience.cs	2005-08-19 15:54:12 UTC (rev 2764)
+++ trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/CSharpAmbience.cs	2005-08-19 15:56:13 UTC (rev 2765)
@@ -173,7 +173,7 @@
 				}
 				builder.Append(')');
 				
-			} else if (ShowInheritanceList) {
+			} else if (ShowInheritanceList && c.ClassType != ClassType.Enum) {
 				if (c.BaseTypes.Count > 0) {
 					builder.Append(" : ");
 					for (int i = 0; i < c.BaseTypes.Count; ++i) {

Modified: trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2005-08-19 15:54:12 UTC (rev 2764)
+++ trunk/MonoDevelop/Core/src/AddIns/BackendBindings/CSharpBinding/ChangeLog	2005-08-19 15:56:13 UTC (rev 2765)
@@ -1,3 +1,8 @@
+2005-08-19  Lluis Sanchez Gual  <lluis at novell.com>
+
+	* CSharpAmbience.cs: Don't include the inheritance tree when converting
+	an enum.
+
 2005-08-12  Lluis Sanchez Gual  <lluis at novell.com> 
 
 	* templates/*:




More information about the Monodevelop-patches-list mailing list