summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/file/filinsreq.cxx2
-rw-r--r--ucb/source/ucp/ftp/ftpintreq.cxx2
2 files changed, 2 insertions, 2 deletions
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<uno::Reference<task::XInteractionContinuation>> continuations{
+ std::vector<uno::Reference<task::XInteractionContinuation>> continuations{
Reference<XInteractionContinuation>(p1),
Reference<XInteractionContinuation>(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<uno::Reference<task::XInteractionContinuation>> continuations{
+ std::vector<uno::Reference<task::XInteractionContinuation>> continuations{
Reference<XInteractionContinuation>(p1),
Reference<XInteractionContinuation>(p2) };
Any aAny;
4Upcoming loplugin:elidestringvar: javaunohelperStephan Bergmann 2020-05-09compact namespace in i18npool..ooxNoel Grandin 2020-05-06Move all public Java classes to libreoffice.jarSamuel Mehrbrodt 2020-03-10Fix typoAndrea Gelmini 2020-02-04tdf#117331 Merge jurt and unoil into ridlSamuel Mehrbrodt 2019-12-19sal_Char->char in idlc..linguisticNoel Grandin 2019-11-13Extend loplugin:salbool to loplugin:fakeboolStephan Bergmann 2019-08-12Fix typosAndrea Gelmini 2019-07-27Fix typosAndrea Gelmini 2019-07-20Fix typosAndrea Gelmini 2019-07-03cid#1448341: perf inefficient map iteratorJulien Nabet 2019-07-03cid#1448214: perf inefficient map iteratorJulien Nabet 2019-05-27@deprecated should be with @DeprecatedTomoyuki Kubota 2019-05-16javaunohelper: blind fix for Android build broken by 2d22f8bb15c1Michael Stahl 2019-05-16tdf#42949 Fix IWYU warnings in javaunohelper/Gabor Kelemen 2019-05-10an uno -> a unoCaolán McNamara 2019-04-01tdf#120703 PVS: Silence V522 warningsMike Kaganski 2019-03-07log nice exception messages whereever possibleNoel Grandin 2018-10-10HTML tt -> code in JavaDoc commentsStephan Bergmann 2018-10-09Extend loplugin:redundantinline to catch inline functions w/o external linkageStephan Bergmann 2018-09-17New loplugin:externalStephan Bergmann 2018-08-29replace rtl_allocateMemory with std::mallocNoel Grandin 2018-08-26boostrap->bootstrapCaolán McNamara