diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2011-07-31 01:26:30 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2011-07-31 01:26:30 +0200 |
commit | ebbcd842f6723819f49d63f414fd2ad7f6a89ecf (patch) | |
tree | 94adc02bd6fecca602e7b45bfffeb972cf8325c9 /svx | |
parent | 93774fa4d53d0af09c4beba53bf0d6fafca59ce8 (diff) |
Revert another specific change
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/unodraw/unoprov.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/svx/source/unodraw/unoprov.cxx b/svx/source/unodraw/unoprov.cxx index d9fea7e28f9b..4634589a4fbb 100644 --- a/svx/source/unodraw/unoprov.cxx +++ b/svx/source/unodraw/unoprov.cxx @@ -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; } |