2002-07-25 Duncan Mak <duncan@ximian.com>

* TestRange.cs: Fix the EventHandlers here.

svn path=/trunk/gtk-sharp/; revision=6167
This commit is contained in:
Duncan Mak 2002-07-25 11:42:04 +00:00
parent c1b8365702
commit dd71eaf3ea
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-07-25 Duncan Mak <duncan@ximian.com>
* TestRange.cs: Fix the EventHandlers here.
2002-07-23 Duncan Mak <duncan@ximian.com>
* TestMenus.cs: Use MenuItem instead of ImageMenuItem, this test

View File

@ -45,7 +45,7 @@ namespace WidgetViewer {
hscale = new HScale (adjustment);
hscale.DrawValue = true;
hscale.FormatValue += new EventHandler (reformat_value);
hscale.FormatValue += new FormatValueHandler (reformat_value);
box2.PackStart (hscale, true, true, 0);
@ -65,7 +65,7 @@ namespace WidgetViewer {
vscale = new VScale (adjustment);
vscale.DrawValue = true;
vscale.FormatValue += new EventHandler (reformat_value);
vscale.FormatValue += new FormatValueHandler (reformat_value);
hbox.PackStart (vscale, true, true, 0);
box2.PackStart (hbox, true, true, 0);
@ -91,7 +91,7 @@ namespace WidgetViewer {
window.Destroy ();
}
static void reformat_value (object o, EventArgs args)
static void reformat_value (object o, FormatValueArgs args)
{
}
}