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 | 6d6a5c8567d7d43a882aa2e2be88b1992a6b4f55 (patch) | |
tree | 90336e665e9d3b8ca91502f979c3e2ef624de005 /extensions/source | |
parent | 0cd0153b2493bdeaac22e271884164c7c663f302 (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 b1c90018f15e..0e203309407b 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) { |