summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbapane.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/vba/vbapane.cxx')
-rw-r--r--sw/source/ui/vba/vbapane.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/vba/vbapane.cxx b/sw/source/ui/vba/vbapane.cxx
index 4efb7580eacb..118538da3263 100644
--- a/sw/source/ui/vba/vbapane.cxx
+++ b/sw/source/ui/vba/vbapane.cxx
@@ -25,7 +25,7 @@ using namespace ::ooo::vba;
using namespace ::com::sun::star;
SwVbaPane::SwVbaPane( const uno::Reference< ooo::vba::XHelperInterface >& rParent, const uno::Reference< uno::XComponentContext >& rContext,
- const uno::Reference< frame::XModel >& xModel ) throw ( uno::RuntimeException ) :
+ const uno::Reference< frame::XModel >& xModel ) :
SwVbaPane_BASE( rParent, rContext ), mxModel( xModel )
{
}
@@ -35,13 +35,13 @@ SwVbaPane::~SwVbaPane()
}
uno::Any SAL_CALL
-SwVbaPane::View() throw ( css::uno::RuntimeException, std::exception )
+SwVbaPane::View()
{
return uno::makeAny( uno::Reference< word::XView >( new SwVbaView( this, mxContext, mxModel ) ) );
}
void SAL_CALL
-SwVbaPane::Close( ) throw ( css::uno::RuntimeException, std::exception )
+SwVbaPane::Close( )
{
OUString url = ".uno:CloseWin";
dispatchRequests( mxModel,url );