diff options
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/view/viewsh.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 ) { |