From e76b00978187486876cdc2adde14ef5043b2a9b0 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 28 Jan 2016 15:44:38 +0200 Subject: sequence->vector in OInteractionRequest Change-Id: I995cb96e514e1aaa05a96f29344ef51e4ca83c64 --- ucb/source/ucp/file/filinsreq.cxx | 2 +- ucb/source/ucp/ftp/ftpintreq.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ucb') diff --git a/ucb/source/ucp/file/filinsreq.cxx b/ucb/source/ucp/file/filinsreq.cxx index e6466b9a59d3..664c45cb06af 100644 --- a/ucb/source/ucp/file/filinsreq.cxx +++ b/ucb/source/ucp/file/filinsreq.cxx @@ -53,7 +53,7 @@ XInteractionRequestImpl::XInteractionRequestImpl( { if( pShell ) pShell->retrieveError(CommandId,m_nErrorCode,m_nMinorError); - uno::Sequence> continuations{ + std::vector> continuations{ Reference(p1), Reference(p2) }; Any aAny; diff --git a/ucb/source/ucp/ftp/ftpintreq.cxx b/ucb/source/ucp/ftp/ftpintreq.cxx index 4cb1c9beb3d0..9698080bb8db 100644 --- a/ucb/source/ucp/ftp/ftpintreq.cxx +++ b/ucb/source/ucp/ftp/ftpintreq.cxx @@ -69,7 +69,7 @@ XInteractionRequestImpl::XInteractionRequestImpl() : p1( new XInteractionApproveImpl ) , p2( new XInteractionDisapproveImpl ) { - uno::Sequence> continuations{ + std::vector> continuations{ Reference(p1), Reference(p2) }; Any aAny; -- cgit