From 73cb1d808255e94001c5cd994fcd9035c6a45437 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Mon, 25 Sep 2006 16:56:35 +0000 Subject: [PATCH] * TextControl.cs: Fix print out in debug method. svn path=/trunk/mcs/; revision=65887 --- mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog | 4 ++++ mcs/class/Managed.Windows.Forms/System.Windows.Forms/TextControl.cs | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog index 24bfb081669..846e9623b97 100644 --- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog +++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog @@ -1,3 +1,7 @@ +2006-09-25 Jackson Harper + + * TextControl.cs: Fix print out in debug method. + 2006-09-24 Alexander Olk * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478. diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TextControl.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TextControl.cs index 51539584daa..8a8683cd03f 100644 --- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TextControl.cs +++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/TextControl.cs @@ -1008,7 +1008,7 @@ namespace System.Windows.Forms { total = 1; - Console.Write("Line {0} [# {1}], Y: {1} Text {2}", line.line_no, line.GetHashCode(), line.Y, line.text != null ? line.text.ToString() : "undefined"); + Console.Write("Line {0} [# {1}], Y: {2} Text {3}", line.line_no, line.GetHashCode(), line.Y, line.text != null ? line.text.ToString() : "undefined"); if (line.left == sentinel) { Console.Write(", left = sentinel"); -- 2.11.4.GIT