summaryrefslogtreecommitdiff
path: root/sfx2/source/doc/docundomanager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/doc/docundomanager.cxx')
-rw-r--r--sfx2/source/doc/docundomanager.cxx44
1 files changed, 22 insertions, 22 deletions
diff --git a/sfx2/source/doc/docundomanager.cxx b/sfx2/source/doc/docundomanager.cxx
index 290b861a57bf..27022fe80b22 100644
--- a/sfx2/source/doc/docundomanager.cxx
+++ b/sfx2/source/doc/docundomanager.cxx
@@ -245,7 +245,7 @@ namespace sfx2
}
- void SAL_CALL DocumentUndoManager::enterUndoContext( const OUString& i_title ) throw (RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::enterUndoContext( const OUString& i_title )
{
// SYNCHRONIZED --->
UndoManagerGuard aGuard( *this );
@@ -255,7 +255,7 @@ namespace sfx2
}
- void SAL_CALL DocumentUndoManager::enterHiddenUndoContext( ) throw (EmptyUndoStackException, RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::enterHiddenUndoContext( )
{
// SYNCHRONIZED --->
UndoManagerGuard aGuard( *this );
@@ -265,7 +265,7 @@ namespace sfx2
}
- void SAL_CALL DocumentUndoManager::leaveUndoContext( ) throw (InvalidStateException, RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::leaveUndoContext( )
{
// SYNCHRONIZED --->
UndoManagerGuard aGuard( *this );
@@ -275,7 +275,7 @@ namespace sfx2
}
- void SAL_CALL DocumentUndoManager::addUndoAction( const Reference< XUndoAction >& i_action ) throw (RuntimeException, IllegalArgumentException, std::exception)
+ void SAL_CALL DocumentUndoManager::addUndoAction( const Reference< XUndoAction >& i_action )
{
// SYNCHRONIZED --->
UndoManagerGuard aGuard( *this );
@@ -285,7 +285,7 @@ namespace sfx2
}
- void SAL_CALL DocumentUndoManager::undo( ) throw (EmptyUndoStackException, UndoContextNotClosedException, UndoFailedException, RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::undo( )
{
// SYNCHRONIZED --->
UndoManagerGuard aGuard( *this );
@@ -295,7 +295,7 @@ namespace sfx2
}
- void SAL_CALL DocumentUndoManager::redo( ) throw (EmptyUndoStackException, UndoContextNotClosedException, UndoFailedException, RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::redo( )
{
// SYNCHRONIZED --->
UndoManagerGuard aGuard( *this );
@@ -305,49 +305,49 @@ namespace sfx2
}
- sal_Bool SAL_CALL DocumentUndoManager::isUndoPossible( ) throw (RuntimeException, std::exception)
+ sal_Bool SAL_CALL DocumentUndoManager::isUndoPossible( )
{
UndoManagerGuard aGuard( *this );
return m_pImpl->aUndoHelper.isUndoPossible();
}
- sal_Bool SAL_CALL DocumentUndoManager::isRedoPossible( ) throw (RuntimeException, std::exception)
+ sal_Bool SAL_CALL DocumentUndoManager::isRedoPossible( )
{
UndoManagerGuard aGuard( *this );
return m_pImpl->aUndoHelper.isRedoPossible();
}
- OUString SAL_CALL DocumentUndoManager::getCurrentUndoActionTitle( ) throw (EmptyUndoStackException, RuntimeException, std::exception)
+ OUString SAL_CALL DocumentUndoManager::getCurrentUndoActionTitle( )
{
UndoManagerGuard aGuard( *this );
return m_pImpl->aUndoHelper.getCurrentUndoActionTitle();
}
- OUString SAL_CALL DocumentUndoManager::getCurrentRedoActionTitle( ) throw (EmptyUndoStackException, RuntimeException, std::exception)
+ OUString SAL_CALL DocumentUndoManager::getCurrentRedoActionTitle( )
{
UndoManagerGuard aGuard( *this );
return m_pImpl->aUndoHelper.getCurrentRedoActionTitle();
}
- Sequence< OUString > SAL_CALL DocumentUndoManager::getAllUndoActionTitles( ) throw (RuntimeException, std::exception)
+ Sequence< OUString > SAL_CALL DocumentUndoManager::getAllUndoActionTitles( )
{
UndoManagerGuard aGuard( *this );
return m_pImpl->aUndoHelper.getAllUndoActionTitles();
}
- Sequence< OUString > SAL_CALL DocumentUndoManager::getAllRedoActionTitles( ) throw (RuntimeException, std::exception)
+ Sequence< OUString > SAL_CALL DocumentUndoManager::getAllRedoActionTitles( )
{
UndoManagerGuard aGuard( *this );
return m_pImpl->aUndoHelper.getAllRedoActionTitles();
}
- void SAL_CALL DocumentUndoManager::clear( ) throw (UndoContextNotClosedException, RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::clear( )
{
// SYNCHRONIZED --->
UndoManagerGuard aGuard( *this );
@@ -357,7 +357,7 @@ namespace sfx2
}
- void SAL_CALL DocumentUndoManager::clearRedo( ) throw (UndoContextNotClosedException, RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::clearRedo( )
{
// SYNCHRONIZED --->
UndoManagerGuard aGuard( *this );
@@ -367,7 +367,7 @@ namespace sfx2
}
- void SAL_CALL DocumentUndoManager::reset() throw (RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::reset()
{
// SYNCHRONIZED --->
UndoManagerGuard aGuard( *this );
@@ -377,49 +377,49 @@ namespace sfx2
}
- void SAL_CALL DocumentUndoManager::lock( ) throw (RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::lock( )
{
UndoManagerGuard aGuard( *this );
m_pImpl->aUndoHelper.lock();
}
- void SAL_CALL DocumentUndoManager::unlock( ) throw (RuntimeException, NotLockedException, std::exception)
+ void SAL_CALL DocumentUndoManager::unlock( )
{
UndoManagerGuard aGuard( *this );
m_pImpl->aUndoHelper.unlock();
}
- sal_Bool SAL_CALL DocumentUndoManager::isLocked( ) throw (RuntimeException, std::exception)
+ sal_Bool SAL_CALL DocumentUndoManager::isLocked( )
{
UndoManagerGuard aGuard( *this );
return m_pImpl->aUndoHelper.isLocked();
}
- void SAL_CALL DocumentUndoManager::addUndoManagerListener( const Reference< XUndoManagerListener >& i_listener ) throw (RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::addUndoManagerListener( const Reference< XUndoManagerListener >& i_listener )
{
UndoManagerGuard aGuard( *this );
return m_pImpl->aUndoHelper.addUndoManagerListener( i_listener );
}
- void SAL_CALL DocumentUndoManager::removeUndoManagerListener( const Reference< XUndoManagerListener >& i_listener ) throw (RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::removeUndoManagerListener( const Reference< XUndoManagerListener >& i_listener )
{
UndoManagerGuard aGuard( *this );
return m_pImpl->aUndoHelper.removeUndoManagerListener( i_listener );
}
- Reference< XInterface > SAL_CALL DocumentUndoManager::getParent( ) throw (RuntimeException, std::exception)
+ Reference< XInterface > SAL_CALL DocumentUndoManager::getParent( )
{
UndoManagerGuard aGuard( *this );
return static_cast< XModel* >( &getBaseModel() );
}
- void SAL_CALL DocumentUndoManager::setParent( const Reference< XInterface >& i_parent ) throw (NoSupportException, RuntimeException, std::exception)
+ void SAL_CALL DocumentUndoManager::setParent( const Reference< XInterface >& i_parent )
{
(void)i_parent;
throw NoSupportException( OUString(), m_pImpl->getThis() );