summaryrefslogtreecommitdiff
path: root/vcl/unx/generic/dtrans/X11_droptarget.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/unx/generic/dtrans/X11_droptarget.cxx')
-rw-r--r--vcl/unx/generic/dtrans/X11_droptarget.cxx23
1 files changed, 0 insertions, 23 deletions
diff --git a/vcl/unx/generic/dtrans/X11_droptarget.cxx b/vcl/unx/generic/dtrans/X11_droptarget.cxx
index d90e8a58ad84..51bd3c0a352a 100644
--- a/vcl/unx/generic/dtrans/X11_droptarget.cxx
+++ b/vcl/unx/generic/dtrans/X11_droptarget.cxx
@@ -26,7 +26,6 @@ using namespace com::sun::star::awt;
using namespace com::sun::star::datatransfer;
using namespace com::sun::star::datatransfer::dnd;
-
DropTarget::DropTarget() :
::cppu::WeakComponentImplHelper3<
XDropTarget,
@@ -46,8 +45,6 @@ DropTarget::~DropTarget()
m_pSelectionManager->deregisterDropTarget( m_aTargetWindow );
}
-
-
void DropTarget::initialize( const Sequence< Any >& arguments ) throw( ::com::sun::star::uno::Exception, std::exception )
{
if( arguments.getLength() > 1 )
@@ -76,8 +73,6 @@ void DropTarget::initialize( const Sequence< Any >& arguments ) throw( ::com::su
}
}
-
-
void DropTarget::addDropTargetListener( const Reference< XDropTargetListener >& xListener ) throw(std::exception)
{
::osl::Guard< ::osl::Mutex > aGuard( m_aMutex );
@@ -85,8 +80,6 @@ void DropTarget::addDropTargetListener( const Reference< XDropTargetListener >&
m_aListeners.push_back( xListener );
}
-
-
void DropTarget::removeDropTargetListener( const Reference< XDropTargetListener >& xListener ) throw(std::exception)
{
::osl::Guard< ::osl::Mutex > aGuard( m_aMutex );
@@ -94,15 +87,11 @@ void DropTarget::removeDropTargetListener( const Reference< XDropTargetListener
m_aListeners.remove( xListener );
}
-
-
sal_Bool DropTarget::isActive() throw(std::exception)
{
return m_bActive;
}
-
-
void DropTarget::setActive( sal_Bool active ) throw(std::exception)
{
::osl::Guard< ::osl::Mutex > aGuard( m_aMutex );
@@ -110,15 +99,11 @@ void DropTarget::setActive( sal_Bool active ) throw(std::exception)
m_bActive = active;
}
-
-
sal_Int8 DropTarget::getDefaultActions() throw(std::exception)
{
return m_nDefaultActions;
}
-
-
void DropTarget::setDefaultActions( sal_Int8 actions ) throw(std::exception)
{
::osl::Guard< ::osl::Mutex > aGuard( m_aMutex );
@@ -126,8 +111,6 @@ void DropTarget::setDefaultActions( sal_Int8 actions ) throw(std::exception)
m_nDefaultActions = actions;
}
-
-
void DropTarget::drop( const DropTargetDropEvent& dtde ) throw()
{
osl::ClearableGuard< ::osl::Mutex > aGuard( m_aMutex );
@@ -140,8 +123,6 @@ void DropTarget::drop( const DropTargetDropEvent& dtde ) throw()
}
}
-
-
void DropTarget::dragEnter( const DropTargetDragEnterEvent& dtde ) throw()
{
osl::ClearableGuard< ::osl::Mutex > aGuard( m_aMutex );
@@ -154,8 +135,6 @@ void DropTarget::dragEnter( const DropTargetDragEnterEvent& dtde ) throw()
}
}
-
-
void DropTarget::dragExit( const DropTargetEvent& dte ) throw()
{
osl::ClearableGuard< ::osl::Mutex > aGuard( m_aMutex );
@@ -168,8 +147,6 @@ void DropTarget::dragExit( const DropTargetEvent& dte ) throw()
}
}
-
-
void DropTarget::dragOver( const DropTargetDragEvent& dtde ) throw()
{
osl::ClearableGuard< ::osl::Mutex > aGuard( m_aMutex );