summaryrefslogtreecommitdiffstats
path: root/filter/source/config/cache/filterfactory.cxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-02-07 01:07:03 +0100
committerMichael Stahl <mstahl@redhat.com>2015-02-07 01:07:03 +0100
commit3159f59e2c620de14d9570b69a802554a3968af8 (patch)
tree998ad44daa95290bb9ef6365fe660ccc53221071 /filter/source/config/cache/filterfactory.cxx
parentFixup --without-x build (diff)
downloadcore-3159f59e2c620de14d9570b69a802554a3968af8.tar.gz
core-3159f59e2c620de14d9570b69a802554a3968af8.zip
filter: try to fix GCC 4.6 build
Change-Id: I3fa777b2f2d155bbd8bebf58211446eb1fa458f6
Diffstat (limited to 'filter/source/config/cache/filterfactory.cxx')
-rw-r--r--filter/source/config/cache/filterfactory.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/config/cache/filterfactory.cxx b/filter/source/config/cache/filterfactory.cxx
index f6108bf523d9..9abfaa84d77b 100644
--- a/filter/source/config/cache/filterfactory.cxx
+++ b/filter/source/config/cache/filterfactory.cxx
@@ -143,7 +143,7 @@ css::uno::Reference< css::uno::XInterface > SAL_CALL FilterFactory::createInstan
css::uno::Sequence< css::beans::PropertyValue > lConfig;
aFilter >> lConfig;
- ::std::vector< css::uno::Any > stlArguments(comphelper::sequenceToContainer<::std::vector< css::uno::Any > >(lArguments));
+ ::std::vector< css::uno::Any > stlArguments(comphelper::sequenceToContainer< ::std::vector< css::uno::Any > >(lArguments));
stlArguments.insert(stlArguments.begin(), css::uno::makeAny(lConfig));
xInit->initialize(comphelper::containerToSequence(stlArguments));