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 --- sfx2/source/view/viewsh.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sfx2') diff --git a/sfx2/source/view/viewsh.cxx b/sfx2/source/view/viewsh.cxx index b9615924160d..d4cb20b1ece2 100644 --- a/sfx2/source/view/viewsh.cxx +++ b/sfx2/source/view/viewsh.cxx @@ -433,7 +433,7 @@ SAL_DLLPRIVATE void SfxViewShell::IPClientGone_Impl( SfxInPlaceClient *pIPClient { SfxInPlaceClientList* pClientList = GetIPClientList_Impl(sal_True); - for( SfxInPlaceClientList::iterator it = pClientList->begin(); it < pClientList->end(); ++it ) + for( SfxInPlaceClientList::iterator it = pClientList->begin(); it != pClientList->end(); ++it ) { if ( *it == pIPClient ) { -- cgit