diff options
author | Andreas Bregas <ab@openoffice.org> | 2010-06-29 16:34:19 +0200 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2010-06-29 16:34:19 +0200 |
commit | c799303eb630864cc74f04119160c6cde5a13d18 (patch) | |
tree | 61b17546b0836120307c4ad1f7825b581f9c2b89 /extensions/source | |
parent | ffd8271996bff0bbbe5d63218e13d6d2a2063446 (diff) |
mib17: #i110821# Hot fix to avoid regression
Diffstat (limited to 'extensions/source')
-rw-r--r-- | extensions/source/ole/oleobjw.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extensions/source/ole/oleobjw.cxx b/extensions/source/ole/oleobjw.cxx index 9c76addaa..17eb5ccac 100644 --- a/extensions/source/ole/oleobjw.cxx +++ b/extensions/source/ole/oleobjw.cxx @@ -1231,7 +1231,9 @@ void SAL_CALL IUnknownWrapper_Impl::initialize( const Sequence< Any >& aArgument } catch (BridgeRuntimeError & e) { - throw RuntimeException(e.message, Reference<XInterface>()); + // #i110821 Hot Fix: Fails for some objects that have + // worked before, will be evaluated in follow up issue. + //throw RuntimeException(e.message, Reference<XInterface>()); } catch( Exception& e) { |