From 7bb409a7dfa67370b7bcd7104a1bb20a6bc8bb9b Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Mon, 30 Apr 2012 13:20:04 +0200 Subject: compare iterators with notequal --- svl/source/numbers/zforlist.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svl') 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 ) { -- cgit v1.2.3