summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-02-12 11:06:18 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-02-12 11:27:56 +0000
commitf6202716f7a3869231f90034077028b240ebbfc5 (patch)
tree82479c05bb15c709fa2d808c02cd310e8f236f72 /include
parent6dd06494227d2f09b18619973735b9f9b9e65663 (diff)
coverity#1269582 Uncaught exception
and coverity#1269600 Uncaught exception coverity#1269575 Uncaught exception coverity#1269579 Uncaught exception Change-Id: If8d5650a9de574d92912a53a5b560ddb03e937f1
Diffstat (limited to 'include')
-rw-r--r--include/canvas/base/canvasbase.hxx21
1 files changed, 13 insertions, 8 deletions
diff --git a/include/canvas/base/canvasbase.hxx b/include/canvas/base/canvasbase.hxx
index 98772d2fcf3c..327afc4e0c29 100644
--- a/include/canvas/base/canvasbase.hxx
+++ b/include/canvas/base/canvasbase.hxx
@@ -303,11 +303,13 @@ namespace canvas
}
virtual ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XCachedPrimitive > SAL_CALL
- fillTexturedPolyPolygon( const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XPolyPolygon2D >& xPolyPolygon,
- const ::com::sun::star::rendering::ViewState& viewState,
- const ::com::sun::star::rendering::RenderState& renderState,
- const ::com::sun::star::uno::Sequence< ::com::sun::star::rendering::Texture >& textures ) throw (::com::sun::star::lang::IllegalArgumentException,
- ::com::sun::star::uno::RuntimeException) SAL_OVERRIDE
+ fillTexturedPolyPolygon(const css::uno::Reference< ::com::sun::star::rendering::XPolyPolygon2D >& xPolyPolygon,
+ const css::rendering::ViewState& viewState,
+ const css::rendering::RenderState& renderState,
+ const css::uno::Sequence< ::com::sun::star::rendering::Texture >& textures)
+ throw (css::lang::IllegalArgumentException,
+ css::uno::RuntimeException,
+ std::exception) SAL_OVERRIDE
{
tools::verifyArgs(xPolyPolygon, viewState, renderState, textures,
BOOST_CURRENT_FUNCTION,
@@ -400,9 +402,12 @@ namespace canvas
virtual ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XCachedPrimitive > SAL_CALL
- drawTextLayout( const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XTextLayout >& laidOutText,
- const ::com::sun::star::rendering::ViewState& viewState,
- const ::com::sun::star::rendering::RenderState& renderState ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException) SAL_OVERRIDE
+ drawTextLayout(const css::uno::Reference< ::com::sun::star::rendering::XTextLayout >& laidOutText,
+ const css::rendering::ViewState& viewState,
+ const css::rendering::RenderState& renderState)
+ throw (css::lang::IllegalArgumentException,
+ css::uno::RuntimeException,
+ std::exception) SAL_OVERRIDE
{
tools::verifyArgs(laidOutText, viewState, renderState,
BOOST_CURRENT_FUNCTION,