Author: lluis
Date: 2005-04-14 08:24:50 -0400 (Thu, 14 Apr 2005)
New Revision: 42998

Modified:
   trunk/mcs/class/System.Web/System.Web.Compilation/ChangeLog
   trunk/mcs/class/System.Web/System.Web.Compilation/TemplateControlCompiler.cs
Log:
2005-04-14  Lluis Sanchez Gual <[EMAIL PROTECTED]>

        * TemplateControlCompiler.cs: Use the new BindingContainerType
        property to find the type of the binding container. 
        


Modified: trunk/mcs/class/System.Web/System.Web.Compilation/ChangeLog
===================================================================
--- trunk/mcs/class/System.Web/System.Web.Compilation/ChangeLog 2005-04-14 
12:24:07 UTC (rev 42997)
+++ trunk/mcs/class/System.Web/System.Web.Compilation/ChangeLog 2005-04-14 
12:24:50 UTC (rev 42998)
@@ -1,3 +1,8 @@
+2005-04-14  Lluis Sanchez Gual <[EMAIL PROTECTED]>
+
+       * TemplateControlCompiler.cs: Use the new BindingContainerType
+       property to find the type of the binding container. 
+       
 2005-04-07  Lluis Sanchez Gual <[EMAIL PROTECTED]>
 
        * TemplateControlCompiler.cs: Avoid using the GetConverter() trick

Modified: 
trunk/mcs/class/System.Web/System.Web.Compilation/TemplateControlCompiler.cs
===================================================================
--- 
trunk/mcs/class/System.Web/System.Web.Compilation/TemplateControlCompiler.cs    
    2005-04-14 12:24:07 UTC (rev 42997)
+++ 
trunk/mcs/class/System.Web/System.Web.Compilation/TemplateControlCompiler.cs    
    2005-04-14 12:24:50 UTC (rev 42998)
@@ -569,7 +569,7 @@
                        if (tb != null && tb.ContainerType != null)
                                return tb.ContainerType;
 
-                       Type type = builder.NamingContainerType;
+                       Type type = builder.BindingContainerType;
 
                        PropertyInfo prop = type.GetProperty ("Items", 
noCaseFlags);
                        if (prop == null)

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

Reply via email to