Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI/Html32TextWriter.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI/Html32TextWriter.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/Html32TextWriter.cs b/mcs/class/System.Web/System.Web.UI/Html32TextWriter.cs
index 829b73490f8..dc2e26ea02a 100644
--- a/mcs/class/System.Web/System.Web.UI/Html32TextWriter.cs
+++ b/mcs/class/System.Web/System.Web.UI/Html32TextWriter.cs
@@ -9,6 +9,7 @@
// (C) 2004 Novell, Inc (http://www.novell.com)
//
+using System.Collections;
using System.Globalization;
using System.IO;
@@ -274,6 +275,13 @@ namespace System.Web.UI
{
return base.RenderBeforeTag ();
}
+
+ [MonoTODO]
+ protected Stack FontStack {
+ get {
+ return null;
+ }
+ }
}
}