diff options
author | PKEuS <philipp.kloke@web.de> | 2012-02-06 09:44:32 +0100 |
---|---|---|
committer | Thorsten Behrens <tbehrens@suse.com> | 2012-02-06 10:16:35 +0100 |
commit | 664b22c56b7e37006e07ad194fe2ab98980cb8f0 (patch) | |
tree | d399b066da7323641d8501bbe877185f49345cdb /extensions | |
parent | c1a3961b4582e47ebcee84b3acc2a808651bcd07 (diff) |
Fixed some cppcheck messages
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/unoobjw.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/ole/unoobjw.cxx b/extensions/source/ole/unoobjw.cxx index 4e81a8f1955c..641e643234dc 100644 --- a/extensions/source/ole/unoobjw.cxx +++ b/extensions/source/ole/unoobjw.cxx @@ -1007,7 +1007,7 @@ HRESULT InterfaceOleWrapper_Impl::doGetProperty( DISPPARAMS * /*pdispparams*/, V if (pvarResult) anyToVariant(pvarResult, returnValue); } - catch(const UnknownPropertyException e) //XInvocation::getValue + catch(const UnknownPropertyException& e) //XInvocation::getValue { writeExcepinfo(pexcepinfo, e.Message); ret = DISP_E_MEMBERNOTFOUND; |