[Mwinapi-commits] SF.net SVN: mwinapi:[94] trunk/ManagedWinapi/SystemAccessibleObject.cs
Status: Beta
Brought to you by:
schierlm
|
From: <sch...@us...> - 2010-09-29 16:10:42
|
Revision: 94
http://mwinapi.svn.sourceforge.net/mwinapi/?rev=94&view=rev
Author: schierlm
Date: 2010-09-29 16:10:36 +0000 (Wed, 29 Sep 2010)
Log Message:
-----------
Fix some problems when using Accessibility with Internet Explorer 8, whose
implementation of IAccessible.get_accChild() incorrectly returns
InvalidCastException instead of ArgumentException.
[submitted by Peter Ziewer <ziewer at in dot tum dot de>]
Modified Paths:
--------------
trunk/ManagedWinapi/SystemAccessibleObject.cs
Modified: trunk/ManagedWinapi/SystemAccessibleObject.cs
===================================================================
--- trunk/ManagedWinapi/SystemAccessibleObject.cs 2010-02-14 14:17:49 UTC (rev 93)
+++ trunk/ManagedWinapi/SystemAccessibleObject.cs 2010-09-29 16:10:36 UTC (rev 94)
@@ -69,6 +69,7 @@
}
}
catch (ArgumentException) { }
+ catch (InvalidCastException) { }
}
this.iacc = iacc;
this.childID = childID;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|