diff options
author | David Tardon <dtardon@redhat.com> | 2010-11-26 19:33:12 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2010-11-26 19:33:12 +0100 |
commit | 9979fd397191b005c3204ccd1fa5ce5b5fa387e8 (patch) | |
tree | 0afa0235cc3b9fa6b2bc265f867a01966f85039f | |
parent | a36c72589891557d2fb56804c0d90db39dfc39fb (diff) |
do not catch exception by valuefeature/bootstrap-build
-rw-r--r-- | reportdesign/source/ui/report/FixedTextColor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reportdesign/source/ui/report/FixedTextColor.cxx b/reportdesign/source/ui/report/FixedTextColor.cxx index b8df0b77b..e7f830eb4 100644 --- a/reportdesign/source/ui/report/FixedTextColor.cxx +++ b/reportdesign/source/ui/report/FixedTextColor.cxx @@ -88,7 +88,7 @@ namespace rptui uno::Reference< lang::XComponent > xComponent( xFixedText, uno::UNO_QUERY_THROW ); handle(xComponent); } - catch (uno::Exception e) + catch (uno::Exception const&) { DBG_UNHANDLED_EXCEPTION(); } |