summaryrefslogtreecommitdiff
path: root/vcl/unx/generic/dtrans/X11_clipboard.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/unx/generic/dtrans/X11_clipboard.cxx')
-rw-r--r--vcl/unx/generic/dtrans/X11_clipboard.cxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/vcl/unx/generic/dtrans/X11_clipboard.cxx b/vcl/unx/generic/dtrans/X11_clipboard.cxx
index 6e9f5678a3ba..6f9e4de03856 100644
--- a/vcl/unx/generic/dtrans/X11_clipboard.cxx
+++ b/vcl/unx/generic/dtrans/X11_clipboard.cxx
@@ -133,7 +133,6 @@ void X11Clipboard::clearContents()
}
Reference< XTransferable > SAL_CALL X11Clipboard::getContents()
- throw(RuntimeException, std::exception)
{
MutexGuard aGuard(m_rSelectionManager.getMutex());
@@ -145,7 +144,6 @@ Reference< XTransferable > SAL_CALL X11Clipboard::getContents()
void SAL_CALL X11Clipboard::setContents(
const Reference< XTransferable >& xTrans,
const Reference< XClipboardOwner >& xClipboardOwner )
- throw(RuntimeException, std::exception)
{
// remember old values for callbacks before setting the new ones.
ClearableMutexGuard aGuard(m_rSelectionManager.getMutex());
@@ -176,26 +174,22 @@ void SAL_CALL X11Clipboard::setContents(
}
OUString SAL_CALL X11Clipboard::getName()
- throw(RuntimeException, std::exception)
{
return m_rSelectionManager.getString( m_aSelection );
}
sal_Int8 SAL_CALL X11Clipboard::getRenderingCapabilities()
- throw(RuntimeException, std::exception)
{
return RenderingCapabilities::Delayed;
}
void SAL_CALL X11Clipboard::addClipboardListener( const Reference< XClipboardListener >& listener )
- throw(RuntimeException, std::exception)
{
MutexGuard aGuard( m_rSelectionManager.getMutex() );
m_aListeners.push_back( listener );
}
void SAL_CALL X11Clipboard::removeClipboardListener( const Reference< XClipboardListener >& listener )
- throw(RuntimeException, std::exception)
{
MutexGuard aGuard( m_rSelectionManager.getMutex() );
m_aListeners.remove( listener );
@@ -222,19 +216,16 @@ Reference< XInterface > X11Clipboard::getReference() throw()
}
OUString SAL_CALL X11Clipboard::getImplementationName( )
- throw(RuntimeException, std::exception)
{
return OUString(X11_CLIPBOARD_IMPLEMENTATION_NAME);
}
sal_Bool SAL_CALL X11Clipboard::supportsService( const OUString& ServiceName )
- throw(RuntimeException, std::exception)
{
return cppu::supportsService(this, ServiceName);
}
Sequence< OUString > SAL_CALL X11Clipboard::getSupportedServiceNames( )
- throw(RuntimeException, std::exception)
{
return X11Clipboard_getSupportedServiceNames();
}