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:
authorAlexander Olk <aolk@mono-cvs.ximian.com>2006-02-28 22:25:41 +0300
committerAlexander Olk <aolk@mono-cvs.ximian.com>2006-02-28 22:25:41 +0300
commit89944111162bd34d833f3cba592b2d1a78d7085a (patch)
tree39680bbb7f95472921ad80426ef3511ec9841086
parentc11dad3d2fcab65203b5a96f7c58f15cc25e49a4 (diff)
- Fix typo
svn path=/trunk/mcs/; revision=57417
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog1
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/FontDialog.cs2
2 files changed, 2 insertions, 1 deletions
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
index f4c0f751d38..9183d769fc1 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
@@ -15,6 +15,7 @@
- Draw the correct 3D border in the example panel
- Fixed a little mem leak (unused fonts didn't get disposed)
- Many other internal updates/rewrites...
+ - Fix typo
2006-02-27 Peter Dennis Bartok <pbartok@novell.com>
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/FontDialog.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/FontDialog.cs
index da89b180aca..a9068149620 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/FontDialog.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/FontDialog.cs
@@ -794,7 +794,7 @@ namespace System.Windows.Forms
UpdateExamplePanel( );
}
- void OnFontTextBoxKeyUp (object sender, EventArgs e)
+ void OnFontTextBoxKeyUp (object sender, KeyEventArgs e)
{
for (int i = 0; i < fontListBox.Items.Count; i++) {
string name = fontListBox.Items [i] as string;