diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/unoctabl.cxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/svx/source/unodraw/unoctabl.cxx b/svx/source/unodraw/unoctabl.cxx index 3a3b91707a37..2624ae625f30 100644 --- a/svx/source/unodraw/unoctabl.cxx +++ b/svx/source/unodraw/unoctabl.cxx @@ -36,8 +36,7 @@ private: XColorListRef pList; public: - SvxUnoColorTable() throw(); - virtual ~SvxUnoColorTable() throw(); + SvxUnoColorTable(); // XServiceInfo virtual OUString SAL_CALL getImplementationName() throw( uno::RuntimeException ); @@ -63,15 +62,11 @@ public: virtual sal_Bool SAL_CALL hasElements() throw( uno::RuntimeException); }; -SvxUnoColorTable::SvxUnoColorTable() throw() +SvxUnoColorTable::SvxUnoColorTable() { pList = XPropertyList::CreatePropertyList( XCOLOR_LIST, SvtPathOptions().GetPalettePath(), "" )->AsColorList(); } -SvxUnoColorTable::~SvxUnoColorTable() throw() -{ -} - sal_Bool SAL_CALL SvxUnoColorTable::supportsService( const OUString& ServiceName ) throw(uno::RuntimeException) { return cppu::supportsService( this, ServiceName ); |