Kaydet (Commit) ebbcd842 authored tarafından Julien Nabet's avatar Julien Nabet

Revert another specific change

üst 93774fa4
......@@ -909,8 +909,9 @@ uno::Sequence< OUString > UHashMap::getServiceNames()
uno::Sequence< OUString > aSeq( rMap.size() );
OUString* pStrings = aSeq.getArray();
for (int i = 0, UHashMapImpl::const_iterator it = rMap.begin(); it != rMap.end(); ++it, ++i)
pStrings[i] = it->first;
int i = 0;
for (UHashMapImpl::const_iterator it = rMap.begin(); it != rMap.end(); it++)
pStrings[i++] = it->first;
return aSeq;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment