From 46c01657d505a021673449ff0f874bc080d23ba6 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Wed, 2 May 2012 21:57:04 +0200 Subject: != instead of < for comparison with end iterator Change-Id: I7baa34c1cf7161fb55914d41b451b842ad4ab0c8 --- unotools/source/config/options.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unotools') diff --git a/unotools/source/config/options.cxx b/unotools/source/config/options.cxx index a38950be4e36..1085ae31dcc6 100644 --- a/unotools/source/config/options.cxx +++ b/unotools/source/config/options.cxx @@ -58,7 +58,7 @@ void ConfigurationBroadcaster::RemoveListener( utl::ConfigurationListener* pList { if ( mpList ) { for ( IMPL_ConfigurationListenerList::iterator it = mpList->begin(); - it < mpList->end(); + it != mpList->end(); ++it ) { if ( *it == pListener ) { -- cgit