summaryrefslogtreecommitdiffstats
path: root/filter/source/config/cache/cacheitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/config/cache/cacheitem.cxx')
-rw-r--r--filter/source/config/cache/cacheitem.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/filter/source/config/cache/cacheitem.cxx b/filter/source/config/cache/cacheitem.cxx
index ef0b66fe686a..36420be2331c 100644
--- a/filter/source/config/cache/cacheitem.cxx
+++ b/filter/source/config/cache/cacheitem.cxx
@@ -27,6 +27,7 @@
#include <com/sun/star/beans/PropertyValue.hpp>
#include <osl/diagnose.h>
+#include <comphelper/sequence.hxx>
namespace filter{
@@ -234,8 +235,8 @@ bool isSubSet(const css::uno::Any& aSubSet,
(aSet >>= uno_s2)
)
{
- OUStringList stl_s1(uno_s1);
- OUStringList stl_s2(uno_s2);
+ OUStringList stl_s1(comphelper::sequenceToContainer<OUStringList>(uno_s1));
+ OUStringList stl_s2(comphelper::sequenceToContainer<OUStringList>(uno_s2));
for (OUStringList::const_iterator it1 = stl_s1.begin();
it1 != stl_s1.end() ;