diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-13 15:18:23 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-14 09:56:44 +0100 |
commit | 325012b1df9e453c0c25198aea9f0621213a64e4 (patch) | |
tree | 84397975ea842cee87d68de7cdc926eef4ec3ddd /tools | |
parent | f32b2bbb065e5309398a6455e09872e83f6a4d7b (diff) |
catch by const reference
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/generic/svlibrary.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/generic/svlibrary.cxx b/tools/source/generic/svlibrary.cxx index 5864bdf2c8a8..fdf714933342 100644 --- a/tools/source/generic/svlibrary.cxx +++ b/tools/source/generic/svlibrary.cxx @@ -66,7 +66,7 @@ static uno::Sequence< rtl::OUString > GetMultiPaths_Impl() xPathSettings->getPropertyValue( aInternal ) >>= aInternalPaths; xPathSettings->getPropertyValue( aUser ) >>= aUserPaths; } - catch (uno::Exception &) + catch (const uno::Exception &) { bSuccess = false; } |