make ProcessRequest virtual under TARGET_JVM
authorKonstantin Triger <kostat@mono-cvs.ximian.com>
Mon, 9 Jan 2006 15:55:45 +0000 (15:55 -0000)
committerKonstantin Triger <kostat@mono-cvs.ximian.com>
Mon, 9 Jan 2006 15:55:45 +0000 (15:55 -0000)
svn path=/trunk/mcs/; revision=55232

mcs/class/System.Web/System.Web.UI/ChangeLog
mcs/class/System.Web/System.Web.UI/Page.cs

index f74ec432b5b493a9b0e5f051b53f22605f9eaa07..b394d868be9abc1be5ebec61d21f53ab53cd7b69 100644 (file)
@@ -1,3 +1,7 @@
+2006-01-09  Konstantin Triger <kostat@mainsoft.com>
+
+       * Page.cs: make ProcessRequest virtual under TARGET_JVM.
+
 2006-01-04  Chris Toshok  <toshok@ximian.com>
 
        * TemplateParser.cs (.ctor): kinda gross, but handle the
index 00c268a2fc3d3c8bedfe5b5a50f67e17c9ae629a..6307be6e36e87119b5902b7faf1415d3c52589bc 100644 (file)
@@ -899,7 +899,11 @@ public class Page : TemplateControl, IHttpHandler
        }
 
        [EditorBrowsable (EditorBrowsableState.Never)]
+#if TARGET_JVM
+       public virtual void ProcessRequest (HttpContext context)
+#else
        public void ProcessRequest (HttpContext context)
+#endif
        {
                _context = context;
                if (clientTarget != null)