diff --git a/ChangeLog b/ChangeLog index 35f2c84e5..401d2b30b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-09-23 Andrés G. Aragoneses + + 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 * bootstrap-2.12: bump svn version. diff --git a/atk/Object.custom b/atk/Object.custom index 6e3fbcc6f..bf781bf91 100644 --- a/atk/Object.custom +++ b/atk/Object.custom @@ -182,4 +182,7 @@ return -1; } + public void NotifyStateChange (Atk.StateType state, bool value) { + NotifyStateChange ((ulong)state, value); + }