somehow, this does not compile with csc
authorGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Fri, 4 Jul 2003 19:35:24 +0000 (19:35 -0000)
committerGonzalo Paniagua Javier <gonzalo.mono@gmail.com>
Fri, 4 Jul 2003 19:35:24 +0000 (19:35 -0000)
svn path=/trunk/mcs/; revision=15934

mcs/class/System.Web/System.Web.UI/SimpleWebHandlerParser.cs

index fdc2ca943731050a329678b6c0caaf612565fef7..6df72fa165f977ffd83845834521b22bada5dbaf 100644 (file)
@@ -16,7 +16,6 @@ using System.Text;
 using System.Web;
 using System.Web.Compilation;
 using System.Web.Util;
-using TagType = System.Web.Compilation.TagType;
 
 namespace System.Web.UI
 {
@@ -85,9 +84,9 @@ namespace System.Web.UI
                        reader.Close ();
                }
 
-               void TagParsed (ILocation location, TagType tagtype, string tagid, TagAttributes attributes)
+               void TagParsed (ILocation location, System.Web.Compilation.TagType tagtype, string tagid, TagAttributes attributes)
                {
-                       if (tagtype != TagType.Directive)
+                       if (tagtype != System.Web.Compilation.TagType.Directive)
                                throw new ParseException (location, "Unexpected tag");
 
                        if (String.Compare (tagid, DefaultDirectiveName, true) == 0) {