diff options
author | Noel Grandin <noel@peralex.com> | 2014-05-27 08:47:38 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-05-27 10:49:59 +0200 |
commit | cf5a067ab6501bba976827a21a4d1358fddc5782 (patch) | |
tree | 761d06cf1b293aefd05240400f1087ed0aea2aa9 | |
parent | 48761084b2d30d7bf31c0972f1a6850de5fd55d4 (diff) |
cid#707273 Uncaught exception
Change-Id: Ic9dcbcdc73a0e7b95d665e58db291fa50a287a3c
-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) |