[Mwinapi-commits] SF.net SVN: mwinapi:[106] trunk/ManagedWinapi/SystemAccessibleObject.cs
Status: Beta
Brought to you by:
schierlm
From: <sch...@us...> - 2011-02-01 17:33:01
|
Revision: 106 http://mwinapi.svn.sourceforge.net/mwinapi/?rev=106&view=rev Author: schierlm Date: 2011-02-01 17:32:55 +0000 (Tue, 01 Feb 2011) Log Message: ----------- Yet another exception catcher for SystemAccessibleObject Modified Paths: -------------- trunk/ManagedWinapi/SystemAccessibleObject.cs Modified: trunk/ManagedWinapi/SystemAccessibleObject.cs =================================================================== --- trunk/ManagedWinapi/SystemAccessibleObject.cs 2011-01-23 15:43:58 UTC (rev 105) +++ trunk/ManagedWinapi/SystemAccessibleObject.cs 2011-02-01 17:32:55 UTC (rev 106) @@ -172,7 +172,14 @@ { get { - return iacc.get_accDescription(childID); + try + { + return iacc.get_accDescription(childID); + } + catch (NotImplementedException) + { + return ""; + } } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |