summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-27 09:27:37 +0200
committerNoel Grandin <noel@peralex.com>2014-05-27 10:50:03 +0200
commitdab10217ee81eb956195a37dd4e6a9bbd6c88b58 (patch)
tree9d698cc4e8e0f116250a2b7c9a68104bf8ce4db9 /svx
parent7c81ce73deaae70cc498f39a66decae85bcb38d0 (diff)
cid#707232 Uncaught exception
Change-Id: I834cde0d59f9d283fa31eb5bd0fc8dd89736e064
Diffstat (limited to 'svx')
-rw-r--r--svx/source/table/cell.cxx2
-rw-r--r--svx/source/table/cell.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/table/cell.cxx b/svx/source/table/cell.cxx
index 3ab9b683006f..d26d70cb1dd6 100644
--- a/svx/source/table/cell.cxx
+++ b/svx/source/table/cell.cxx
@@ -348,7 +348,7 @@ rtl::Reference< Cell > Cell::create( SdrTableObj& rTableObj, OutlinerParaObject*
-Cell::Cell( SdrTableObj& rTableObj, OutlinerParaObject* pOutlinerParaObject ) throw()
+Cell::Cell( SdrTableObj& rTableObj, OutlinerParaObject* pOutlinerParaObject ) throw(css::uno::RuntimeException)
: SdrText( rTableObj, pOutlinerParaObject )
, SvxUnoTextBase( ImplGetSvxUnoOutlinerTextCursorSvxPropertySet() )
, mpPropSet( ImplGetSvxCellPropertySet() )
diff --git a/svx/source/table/cell.hxx b/svx/source/table/cell.hxx
index c5a00788b1c4..82d717d849e8 100644
--- a/svx/source/table/cell.hxx
+++ b/svx/source/table/cell.hxx
@@ -211,7 +211,7 @@ protected:
SVX_DLLPRIVATE ::com::sun::star::uno::Any GetAnyForItem( SfxItemSet& aSet, const SfxItemPropertySimpleEntry* pMap );
private:
- SVX_DLLPRIVATE Cell( SdrTableObj& rTableObj, OutlinerParaObject* pOutlinerParaObject ) throw();
+ SVX_DLLPRIVATE Cell( SdrTableObj& rTableObj, OutlinerParaObject* pOutlinerParaObject ) throw(css::uno::RuntimeException);
SVX_DLLPRIVATE virtual ~Cell() throw();
const SvxItemPropertySet* mpPropSet;