mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 17:55:27 +00:00
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:
parent
a4e23390b0
commit
d75f4ef6ca
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue