2002-05-21 Miguel de Icaza <miguel@ximian.com>
authorMiguel de Icaza <miguel@gnome.org>
Tue, 21 May 2002 16:45:48 +0000 (16:45 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Tue, 21 May 2002 16:45:48 +0000 (16:45 -0000)
* HtmlTextWriter.cs: Use this to change the member instances.

svn path=/trunk/mcs/; revision=4831

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

index 5e6331fa5dc1b728568a3c8864ba5a595f72a644..40f51fc81e752d4229f3bdb1ac12222f82aa27da 100644 (file)
@@ -1,3 +1,7 @@
+2002-05-21  Miguel de Icaza  <miguel@ximian.com>
+
+       * HtmlTextWriter.cs: Use this to change the member instances.
+
 2002-05-17  Duncan Mak  <duncan@ximian.com>
 
        * AttributeCollection.cs: 
index ef794771686107f6e9f93d13436d9f6c896fde80..74686be086806f0446c009f9d3bfb7ecf6860de1 100644 (file)
@@ -178,8 +178,8 @@ static HtmlTextWriter(){
 public HtmlTextWriter(TextWriter writer):this(writer, "        "){}\r
 \r
 public HtmlTextWriter(TextWriter writer, string tabString) : base() {\r
-       writer = writer;\r
-       tabString = tabString;\r
+       this.writer = writer;\r
+       this.tabString = tabString;\r
        indentLevel = 0;\r
        tabsPending = false;\r
        _httpWriter = writer as HttpWriter;\r