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
2 changed files with 5 additions and 1 deletions
|
@ -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>
|
2004-09-24 Mike Kestner <mkestner@ximian.com>
|
||||||
|
|
||||||
* gtk/Bin.custom : make Child get/set.
|
* gtk/Bin.custom : make Child get/set.
|
||||||
|
|
|
@ -69,7 +69,7 @@ namespace GLib {
|
||||||
|
|
||||||
public static bool Remove (IdleHandler hndlr)
|
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];
|
IdleProxy p = (IdleProxy) Source.source_handlers [code];
|
||||||
|
|
||||||
if (p.real_handler == hndlr)
|
if (p.real_handler == hndlr)
|
||||||
|
|
Loading…
Reference in a new issue