summaryrefslogtreecommitdiff
path: root/vcl/test
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-06-24 10:42:12 +0000
committerKurt Zenker <kz@openoffice.org>2008-06-24 10:42:12 +0000
commit24e64b0157adb869f2ee62b556e0ebbaf7fee1df (patch)
treec0d4e42e115b5cc6953ef3eb1e58304580d3955f /vcl/test
parent1eaaa1dd756f2afffa661f4580d1d8c5b8fe81bc (diff)
INTEGRATION: CWS canvas05 (1.4.90); FILE MERGED
2008/04/21 07:48:03 thb 1.4.90.2: RESYNC: (1.4-1.5); FILE MERGED 2007/10/01 13:40:14 thb 1.4.90.1: #i78888# #i78925# #i79258# #i79437# #i79846# Merge from CWS picom
Diffstat (limited to 'vcl/test')
-rwxr-xr-xvcl/test/dndtest.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/vcl/test/dndtest.cxx b/vcl/test/dndtest.cxx
index 55706acfc2a3..bd912fcdf444 100755
--- a/vcl/test/dndtest.cxx
+++ b/vcl/test/dndtest.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: dndtest.cxx,v $
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
* This file is part of OpenOffice.org.
*
@@ -323,7 +323,7 @@ void SAL_CALL MyDragAndDropListener::dragEnter( const DropTargetDragEnterEvent&
// -----------------------------------------------------------------------
-void SAL_CALL MyDragAndDropListener::dragExit( const DropTargetEvent& dte ) throw(RuntimeException)
+void SAL_CALL MyDragAndDropListener::dragExit( const DropTargetEvent& ) throw(RuntimeException)
{
printf( "XDropTargetListener::dragExit called ( Window: %X ).\n", m_pWindow );
}
@@ -353,35 +353,35 @@ void SAL_CALL MyDragAndDropListener::dragDropEnd( const DragSourceDropEvent& dsd
// -----------------------------------------------------------------------
-void SAL_CALL MyDragAndDropListener::dragEnter( const DragSourceDragEvent& dsde ) throw(RuntimeException)
+void SAL_CALL MyDragAndDropListener::dragEnter( const DragSourceDragEvent& ) throw(RuntimeException)
{
printf( "XDragSourceListener::dragEnter called ( Window: %X ).\n", m_pWindow );
}
// -----------------------------------------------------------------------
-void SAL_CALL MyDragAndDropListener::dragExit( const DragSourceEvent& dse ) throw(RuntimeException)
+void SAL_CALL MyDragAndDropListener::dragExit( const DragSourceEvent& ) throw(RuntimeException)
{
printf( "XDragSourceListener::dragExit called ( Window: %X ).\n", m_pWindow );
}
// -----------------------------------------------------------------------
-void SAL_CALL MyDragAndDropListener::dragOver( const DragSourceDragEvent& dsde ) throw(RuntimeException)
+void SAL_CALL MyDragAndDropListener::dragOver( const DragSourceDragEvent& ) throw(RuntimeException)
{
printf( "XDragSourceListener::dragOver called ( Window: %X ).\n", m_pWindow );
}
// -----------------------------------------------------------------------
-void SAL_CALL MyDragAndDropListener::dropActionChanged( const DragSourceDragEvent& dsde ) throw(RuntimeException)
+void SAL_CALL MyDragAndDropListener::dropActionChanged( const DragSourceDragEvent& ) throw(RuntimeException)
{
printf( "XDragSourceListener::dropActionChanged called ( Window: %X ).\n", m_pWindow );
}
// -----------------------------------------------------------------------
-void SAL_CALL MyDragAndDropListener::disposing( const EventObject& eo ) throw(RuntimeException)
+void SAL_CALL MyDragAndDropListener::disposing( const EventObject& ) throw(RuntimeException)
{
printf( "XEventListener::disposing called ( Window: %X ).\n", m_pWindow );
}
@@ -425,7 +425,7 @@ MyListBox::MyListBox( Window* pParent ) : ListBox( pParent )
// -----------------------------------------------------------------------
-Any SAL_CALL StringTransferable::getTransferData( const DataFlavor& aFlavor )
+Any SAL_CALL StringTransferable::getTransferData( const DataFlavor& )
throw(UnsupportedFlavorException, IOException, RuntimeException)
{
return makeAny( m_aData );
@@ -441,7 +441,7 @@ Sequence< DataFlavor > SAL_CALL StringTransferable::getTransferDataFlavors( )
// -----------------------------------------------------------------------
-sal_Bool SAL_CALL StringTransferable::isDataFlavorSupported( const DataFlavor& aFlavor )
+sal_Bool SAL_CALL StringTransferable::isDataFlavorSupported( const DataFlavor& )
throw(RuntimeException)
{
return sal_True;