summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2010-11-26 19:33:12 +0100
committerDavid Tardon <dtardon@redhat.com>2010-11-26 19:33:12 +0100
commit9979fd397191b005c3204ccd1fa5ce5b5fa387e8 (patch)
tree0afa0235cc3b9fa6b2bc265f867a01966f85039f
parenta36c72589891557d2fb56804c0d90db39dfc39fb (diff)
do not catch exception by valuefeature/bootstrap-build
-rw-r--r--reportdesign/source/ui/report/FixedTextColor.cxx2
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();
}