diff options
-rw-r--r-- | include/svx/unoshape.hxx | 2 | ||||
-rw-r--r-- | svx/source/unodraw/unoshape.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/unoshape.hxx b/include/svx/unoshape.hxx index f5e8fae6b0b3..0e57fc9d96f7 100644 --- a/include/svx/unoshape.hxx +++ b/include/svx/unoshape.hxx @@ -168,7 +168,7 @@ protected: public: SvxShape( SdrObject* pObj ) throw (); SvxShape( SdrObject* pObject, const SfxItemPropertyMapEntry* pEntries, const SvxItemPropertySet* pPropertySet ) throw (); - SvxShape() throw (); + SvxShape() throw (css::uno::RuntimeException); virtual ~SvxShape() throw (); // Internals diff --git a/svx/source/unodraw/unoshape.cxx b/svx/source/unodraw/unoshape.cxx index 1557bba05d20..032e6af61d75 100644 --- a/svx/source/unodraw/unoshape.cxx +++ b/svx/source/unodraw/unoshape.cxx @@ -210,7 +210,7 @@ SvxShape::SvxShape( SdrObject* pObject, const SfxItemPropertyMapEntry* pEntries, } -SvxShape::SvxShape() throw() +SvxShape::SvxShape() throw( uno::RuntimeException ) : maSize(100,100) , mpImpl( new SvxShapeImpl( *this, maMutex ) ) , mbIsMultiPropertyCall(false) |