From f99f4dc93f44fa1cd799d0ad87ded7ee90d82848 Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Fri, 2 May 2014 03:28:02 +1000 Subject: [PATCH] Fix d0b3832bedf65d Turns out, my logic was wrong in any case. Remove errant not. Change-Id: I735ee1b4364060aa1476160777e196878a5a208e --- sw/source/core/crsr/crsrsh.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/source/core/crsr/crsrsh.cxx b/sw/source/core/crsr/crsrsh.cxx index 9958ede422ee..62c11d0cd56c 100644 --- a/sw/source/core/crsr/crsrsh.cxx +++ b/sw/source/core/crsr/crsrsh.cxx @@ -2511,7 +2511,7 @@ void SwCrsrShell::_ParkPams( SwPaM* pDelRg, SwShellCrsr** ppDelRing ) } pTmpDel = 0; } - if( bGoNext && !pTmp ) + if( bGoNext && pTmp ) pTmp = (SwPaM*)pTmp->GetNext(); } while( !bGoNext || *ppDelRing != pTmp );