summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorDaniel Robertson <danlrobertson89@gmail.com>2015-09-25 12:26:58 -0400
committerStephan Bergmann <sbergman@redhat.com>2015-09-25 21:13:17 +0000
commit8b00ac9b4627d8d7ed13d352ccb8932be6861d97 (patch)
treecac7420227f6a0b6d01e8c936263eeca083fdb4a /sfx2
parente678a8d8e5f1a178ab83da965b785d24b0a9cffb (diff)
tdf#94228 comphelper: replace BOOST_PP
Remove makeSequence. Change-Id: If07dc8702d811111fc634c9c7eb4c9a331517ca5 Reviewed-on: https://gerrit.libreoffice.org/18647 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/inc/pch/precompiled_sfx.hxx1
-rw-r--r--sfx2/source/doc/DocumentMetadataAccess.cxx4
2 files changed, 1 insertions, 4 deletions
diff --git a/sfx2/inc/pch/precompiled_sfx.hxx b/sfx2/inc/pch/precompiled_sfx.hxx
index 03bf69dc691d..ccaa0bd4780f 100644
--- a/sfx2/inc/pch/precompiled_sfx.hxx
+++ b/sfx2/inc/pch/precompiled_sfx.hxx
@@ -475,7 +475,6 @@
#include <comphelper/extract.hxx>
#include <comphelper/flagguard.hxx>
#include <comphelper/interaction.hxx>
-#include <comphelper/makesequence.hxx>
#include <comphelper/mimeconfighelper.hxx>
#include <comphelper/namedvaluecollection.hxx>
#include <comphelper/numberedcollection.hxx>
diff --git a/sfx2/source/doc/DocumentMetadataAccess.cxx b/sfx2/source/doc/DocumentMetadataAccess.cxx
index d6130df49887..ef64bee84acd 100644
--- a/sfx2/source/doc/DocumentMetadataAccess.cxx
+++ b/sfx2/source/doc/DocumentMetadataAccess.cxx
@@ -39,7 +39,6 @@
#include <rtl/bootstrap.hxx>
#include <comphelper/interaction.hxx>
-#include <comphelper/makesequence.hxx>
#include <unotools/mediadescriptor.hxx>
#include <comphelper/sequence.hxx>
#include <comphelper/storagehelper.hxx>
@@ -437,8 +436,7 @@ mkException( OUString const & i_rMessage,
const beans::PropertyValue rnProp(
OUString("ResourceName"),
-1, uno::makeAny(i_rResource), static_cast<beans::PropertyState>(0));
- iaioe.Arguments = ::comphelper::makeSequence(
- uno::makeAny(uriProp), uno::makeAny(rnProp));
+ iaioe.Arguments = { uno::makeAny(uriProp), uno::makeAny(rnProp) };
return iaioe;
}