diff --git a/ChangeLog b/ChangeLog index 4540d6fb1..8c9ed646c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-09-26 Mike Kestner + + * glib/Idle.cs : proxy hash keys are uints, not ints. + 2004-09-24 Mike Kestner * gtk/Bin.custom : make Child get/set. diff --git a/glib/Idle.cs b/glib/Idle.cs index 7e52d3038..85ddfc33e 100755 --- a/glib/Idle.cs +++ b/glib/Idle.cs @@ -69,7 +69,7 @@ namespace GLib { public static bool Remove (IdleHandler hndlr) { - foreach (int code in Source.source_handlers.Keys){ + foreach (uint code in Source.source_handlers.Keys){ IdleProxy p = (IdleProxy) Source.source_handlers [code]; if (p.real_handler == hndlr)