summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2012-04-30 13:20:04 +0200
committerEike Rathke <erack@redhat.com>2012-04-30 13:20:04 +0200
commit7bb409a7dfa67370b7bcd7104a1bb20a6bc8bb9b (patch)
tree7bae2923631f1d5af96c2e30c63d741cf032c5c7 /svl
parent332cc04cbbe069baa5a72e4e1be9de10c64e2e56 (diff)
compare iterators with notequal
Diffstat (limited to 'svl')
-rw-r--r--svl/source/numbers/zforlist.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/numbers/zforlist.cxx b/svl/source/numbers/zforlist.cxx
index 208470608ac5..e26475b15f39 100644
--- a/svl/source/numbers/zforlist.cxx
+++ b/svl/source/numbers/zforlist.cxx
@@ -136,7 +136,7 @@ SvNumberFormatterRegistry_Impl::~SvNumberFormatterRegistry_Impl()
SvNumberFormatter* SvNumberFormatterRegistry_Impl::Remove( SvNumberFormatter* pThis )
{
for (SvNumberFormatterList_impl::iterator it = aFormatters.begin();
- it < aFormatters.end(); ++it)
+ it != aFormatters.end(); ++it)
{
if ( *it == pThis )
{