Fix d0b3832bedf65d

Turns out, my logic was wrong in any case. Remove errant not.

Change-Id: I735ee1b4364060aa1476160777e196878a5a208e
This commit is contained in:
Chris Sherlock 2014-05-02 03:28:02 +10:00
parent 1cb924de8a
commit f99f4dc93f

View File

@ -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 );