summaryrefslogtreecommitdiff
path: root/framework/source/fwi
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-07 21:44:02 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-07 21:44:02 +0200
commit4be81de0d623571d81c167f326dfb913fdb08df6 (patch)
treed84424c73163aa6901a733939190d5af4e613d41 /framework/source/fwi
parent02041335d89cfb23b59218c9201ff16baf423b81 (diff)
Resolve OUStringList typedef
Change-Id: Ifb5dc5128b5619abb83eea427c7fb1115fd825f3
Diffstat (limited to 'framework/source/fwi')
-rw-r--r--framework/source/fwi/classes/converter.cxx4
-rw-r--r--framework/source/fwi/classes/protocolhandlercache.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/fwi/classes/converter.cxx b/framework/source/fwi/classes/converter.cxx
index 5028c341c824..56070bcbcefd 100644
--- a/framework/source/fwi/classes/converter.cxx
+++ b/framework/source/fwi/classes/converter.cxx
@@ -40,9 +40,9 @@ css::uno::Sequence< css::beans::NamedValue > Converter::convert_seqPropVal2seqNa
/**
* converts a sequence of unicode strings into a vector of such items
*/
-OUStringList Converter::convert_seqOUString2OUStringList( const css::uno::Sequence< OUString >& lSource )
+std::vector<OUString> Converter::convert_seqOUString2OUStringList( const css::uno::Sequence< OUString >& lSource )
{
- OUStringList lDestination;
+ std::vector<OUString> lDestination;
sal_Int32 nCount = lSource.getLength();
for (sal_Int32 nItem=0; nItem<nCount; ++nItem )
diff --git a/framework/source/fwi/classes/protocolhandlercache.cxx b/framework/source/fwi/classes/protocolhandlercache.cxx
index 20b26f4d9b99..dc7c3b4966e0 100644
--- a/framework/source/fwi/classes/protocolhandlercache.cxx
+++ b/framework/source/fwi/classes/protocolhandlercache.cxx
@@ -240,7 +240,7 @@ void HandlerCFGAccess::read( HandlerHash** ppHandler ,
aHandler.m_lProtocols = Converter::convert_seqOUString2OUStringList(lTemp);
// register his pattern into the performance search hash
- for (OUStringList::iterator pItem =aHandler.m_lProtocols.begin();
+ for (std::vector<OUString>::iterator pItem =aHandler.m_lProtocols.begin();
pItem!=aHandler.m_lProtocols.end();
++pItem )
{