summaryrefslogtreecommitdiff
path: root/dtrans
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-01-25 10:23:46 +0200
committerNoel Grandin <noel@peralex.com>2016-01-25 10:23:46 +0200
commit47b586380ec72a41d7b701a3f3da1f5b053f4762 (patch)
treef6bc4b6a92b650f8e34cffb6b8c091dfe0ebc0fc /dtrans
parente6469c892d4875fbcc11382d273ea7ab5b9a3dfc (diff)
fix Windows build
by reverting part of commit commit 752cd07d085ac0aadc99bd512d49072843139032 "InterfaceContainer2 with vector instead of Sequence" Change-Id: I69782899ce21fb48f6e77439bee7c7acdb0b4c41
Diffstat (limited to 'dtrans')
-rw-r--r--dtrans/source/win32/clipb/WinClipboard.cxx2
-rw-r--r--dtrans/source/win32/dnd/sourcecontext.cxx4
-rw-r--r--dtrans/source/win32/dnd/target.cxx10
3 files changed, 8 insertions, 8 deletions
diff --git a/dtrans/source/win32/clipb/WinClipboard.cxx b/dtrans/source/win32/clipb/WinClipboard.cxx
index b8c83e955c82..3deada710780 100644
--- a/dtrans/source/win32/clipb/WinClipboard.cxx
+++ b/dtrans/source/win32/clipb/WinClipboard.cxx
@@ -189,7 +189,7 @@ void SAL_CALL CWinClipboard::notifyAllClipboardListener( )
{
aGuard.clear( );
- OInterfaceContainerHelper2* pICHelper = rBHelper.aLC.getContainer(
+ OInterfaceContainerHelper* pICHelper = rBHelper.aLC.getContainer(
cppu::UnoType<XClipboardListener>::get());
if ( pICHelper )
diff --git a/dtrans/source/win32/dnd/sourcecontext.cxx b/dtrans/source/win32/dnd/sourcecontext.cxx
index 03ef66a43e5e..84e54da21cfc 100644
--- a/dtrans/source/win32/dnd/sourcecontext.cxx
+++ b/dtrans/source/win32/dnd/sourcecontext.cxx
@@ -94,7 +94,7 @@ void SourceContext::fire_dragDropEnd( sal_Bool success, sal_Int8 effect)
e.DragSourceContext= static_cast<XDragSourceContext*>( this);
e.Source.set( static_cast<XDragSourceContext*>( this), UNO_QUERY);
- OInterfaceContainerHelper2* pContainer= rBHelper.getContainer(
+ OInterfaceContainerHelper* pContainer= rBHelper.getContainer(
cppu::UnoType<XDragSourceListener>::get());
if( pContainer)
@@ -121,7 +121,7 @@ void SourceContext::fire_dropActionChanged( sal_Int8 dropAction, sal_Int8 userAc
e.DragSourceContext= static_cast<XDragSourceContext*>( this);
e.Source.set( static_cast<XDragSourceContext*>( this), UNO_QUERY);
- OInterfaceContainerHelper2* pContainer= rBHelper.getContainer(
+ OInterfaceContainerHelper* pContainer= rBHelper.getContainer(
cppu::UnoType<XDragSourceListener>::get());
if( pContainer)
diff --git a/dtrans/source/win32/dnd/target.cxx b/dtrans/source/win32/dnd/target.cxx
index dccbe88c5539..d7247f9fc297 100644
--- a/dtrans/source/win32/dnd/target.cxx
+++ b/dtrans/source/win32/dnd/target.cxx
@@ -488,7 +488,7 @@ HRESULT DropTarget::Drop( IDataObject * /*pDataObj*/,
void DropTarget::fire_drop( const DropTargetDropEvent& dte)
{
- OInterfaceContainerHelper2* pContainer= rBHelper.getContainer( cppu::UnoType<XDropTargetListener>::get());
+ OInterfaceContainerHelper* pContainer= rBHelper.getContainer( cppu::UnoType<XDropTargetListener>::get());
if( pContainer)
{
OInterfaceIteratorHelper iter( *pContainer);
@@ -502,7 +502,7 @@ void DropTarget::fire_drop( const DropTargetDropEvent& dte)
void DropTarget::fire_dragEnter( const DropTargetDragEnterEvent& e )
{
- OInterfaceContainerHelper2* pContainer= rBHelper.getContainer( cppu::UnoType<XDropTargetListener>::get());
+ OInterfaceContainerHelper* pContainer= rBHelper.getContainer( cppu::UnoType<XDropTargetListener>::get());
if( pContainer)
{
OInterfaceIteratorHelper iter( *pContainer);
@@ -516,7 +516,7 @@ void DropTarget::fire_dragEnter( const DropTargetDragEnterEvent& e )
void DropTarget::fire_dragExit( const DropTargetEvent& dte )
{
- OInterfaceContainerHelper2* pContainer= rBHelper.getContainer( cppu::UnoType<XDropTargetListener>::get());
+ OInterfaceContainerHelper* pContainer= rBHelper.getContainer( cppu::UnoType<XDropTargetListener>::get());
if( pContainer)
{
@@ -531,7 +531,7 @@ void DropTarget::fire_dragExit( const DropTargetEvent& dte )
void DropTarget::fire_dragOver( const DropTargetDragEvent& dtde )
{
- OInterfaceContainerHelper2* pContainer= rBHelper.getContainer( cppu::UnoType<XDropTargetListener>::get());
+ OInterfaceContainerHelper* pContainer= rBHelper.getContainer( cppu::UnoType<XDropTargetListener>::get());
if( pContainer)
{
OInterfaceIteratorHelper iter( *pContainer );
@@ -545,7 +545,7 @@ void DropTarget::fire_dragOver( const DropTargetDragEvent& dtde )
void DropTarget::fire_dropActionChanged( const DropTargetDragEvent& dtde )
{
- OInterfaceContainerHelper2* pContainer= rBHelper.getContainer( cppu::UnoType<XDropTargetListener>::get());
+ OInterfaceContainerHelper* pContainer= rBHelper.getContainer( cppu::UnoType<XDropTargetListener>::get());
if( pContainer)
{
OInterfaceIteratorHelper iter( *pContainer);