[Mwinapi-commits] SF.net SVN: mwinapi:[129] trunk/ManagedWinapi/Accessibility/ SystemAccessibleObje
Status: Beta
Brought to you by:
schierlm
|
From: <zi...@us...> - 2015-02-04 20:28:17
|
Revision: 129
http://sourceforge.net/p/mwinapi/code/129
Author: ziewer
Date: 2015-02-04 20:28:10 +0000 (Wed, 04 Feb 2015)
Log Message:
-----------
fixed error handling in constructor for 'SystemAccessibleObject' to support IBM/Lotus Notes
Modified Paths:
--------------
trunk/ManagedWinapi/Accessibility/SystemAccessibleObject.cs
Modified: trunk/ManagedWinapi/Accessibility/SystemAccessibleObject.cs
===================================================================
--- trunk/ManagedWinapi/Accessibility/SystemAccessibleObject.cs 2015-01-29 18:34:00 UTC (rev 128)
+++ trunk/ManagedWinapi/Accessibility/SystemAccessibleObject.cs 2015-02-04 20:28:10 UTC (rev 129)
@@ -68,8 +68,9 @@
childID = 0;
}
}
- catch (ArgumentException) { }
- catch (InvalidCastException) { }
+ //catch (ArgumentException) { }
+ //catch (InvalidCastException) { }
+ catch (Exception) { } // general error handling, e.g. IBM/Lotus Notes otherwise crashes with COMException here
}
this.iacc = iacc;
this.childID = childID;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|