diff options
-rw-r--r-- | include/svx/unoshape.hxx | 2 | ||||
-rw-r--r-- | svx/source/unodraw/unoshap2.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/unoshape.hxx b/include/svx/unoshape.hxx index 1fa5696ceef7..247b3e19a77e 100644 --- a/include/svx/unoshape.hxx +++ b/include/svx/unoshape.hxx @@ -642,7 +642,7 @@ public: // Local support functions ::com::sun::star::drawing::PolygonKind GetPolygonKind() const throw(); - void SetPolygon(const basegfx::B2DPolyPolygon & rNew) throw(); + void SetPolygon(const basegfx::B2DPolyPolygon & rNew) throw(css::uno::RuntimeException); basegfx::B2DPolyPolygon GetPolygon() const throw(); // XServiceInfo diff --git a/svx/source/unodraw/unoshap2.cxx b/svx/source/unodraw/unoshap2.cxx index 2de75ecea083..19930f9c2881 100644 --- a/svx/source/unodraw/unoshap2.cxx +++ b/svx/source/unodraw/unoshap2.cxx @@ -1403,7 +1403,7 @@ drawing::PolygonKind SvxShapePolyPolygonBezier::GetPolygonKind() const throw() } -void SvxShapePolyPolygonBezier::SetPolygon(const basegfx::B2DPolyPolygon& rNew) throw() +void SvxShapePolyPolygonBezier::SetPolygon(const basegfx::B2DPolyPolygon& rNew) throw(uno::RuntimeException) { ::SolarMutexGuard aGuard; |