Author: martin
Date: 2005-04-15 12:02:37 -0400 (Fri, 15 Apr 2005)
New Revision: 43055

Modified:
   trunk/mcs/gmcs/ChangeLog
   trunk/mcs/gmcs/class.cs
Log:
**** Merged r41600 from MCS ****


Modified: trunk/mcs/gmcs/ChangeLog
===================================================================
--- trunk/mcs/gmcs/ChangeLog    2005-04-15 16:01:46 UTC (rev 43054)
+++ trunk/mcs/gmcs/ChangeLog    2005-04-15 16:02:37 UTC (rev 43055)
@@ -1,5 +1,10 @@
 2005-03-09  Raja R Harinath  <[EMAIL PROTECTED]>
 
+       * class.cs (TypeContainer.AddToMemberContainer): Use "." rather
+       than '.'.
+
+2005-03-09  Raja R Harinath  <[EMAIL PROTECTED]>
+
        * decl.cs (DeclSpace.LookupType): Don't loop but recurse into
        enclosing DeclSpace.  This ensures that a name-lookup populates
        more caches and there are fewer 'TypeExpression's.  Carve out

Modified: trunk/mcs/gmcs/class.cs
===================================================================
--- trunk/mcs/gmcs/class.cs     2005-04-15 16:01:46 UTC (rev 43054)
+++ trunk/mcs/gmcs/class.cs     2005-04-15 16:02:37 UTC (rev 43055)
@@ -474,7 +474,7 @@
 
                public bool AddToMemberContainer (MemberCore symbol)
                {
-                       return AddToContainer (symbol, String.Concat (Name, 
'.', symbol.Name), symbol.Name);
+                       return AddToContainer (symbol, String.Concat (Name, 
".", symbol.Name), symbol.Name);
                }
 
                bool AddToTypeContainer (DeclSpace ds)

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

Reply via email to