2004-09-26 Mike Kestner <mkestner@ximian.com>

* glib/Idle.cs : proxy hash keys are uints, not ints.

svn path=/trunk/gtk-sharp/; revision=34420
This commit is contained in:
Mike Kestner 2004-09-27 00:28:16 +00:00
parent a4e23390b0
commit d75f4ef6ca
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-09-26 Mike Kestner <mkestner@ximian.com>
* glib/Idle.cs : proxy hash keys are uints, not ints.
2004-09-24 Mike Kestner <mkestner@ximian.com>
* gtk/Bin.custom : make Child get/set.

View File

@ -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)