Fixes BNC#384475.

* atk/Object.custom: Provide a new overload that receives an
enum instead of an ulong, for a friendlier managed API.

svn path=/trunk/gtk-sharp/; revision=113822
This commit is contained in:
Andrés G. Aragoneses 2008-09-23 13:59:30 +00:00
parent eae4bed64f
commit d21970a0cd
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2008-09-23 Andrés G. Aragoneses <aaragoneses@novell.com>
Fixes BNC#384475.
* atk/Object.custom: Provide a new overload that receives an
enum instead of an ulong, for a friendlier managed API.
2008-09-18 Mike Kestner <mkestner@novell.com>
* bootstrap-2.12: bump svn version.

View File

@ -182,4 +182,7 @@
return -1;
}
public void NotifyStateChange (Atk.StateType state, bool value) {
NotifyStateChange ((ulong)state, value);
}