summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2014-05-02 03:28:02 +1000
committerChris Sherlock <chris.sherlock79@gmail.com>2014-05-02 03:34:44 +1000
commitf99f4dc93f44fa1cd799d0ad87ded7ee90d82848 (patch)
treeaa85b264c96689e8ea2f9b4ba9938ec2310b65fb
parent1cb924de8a6f03827ae34aa2d66137b6b5e34112 (diff)
Fix d0b3832bedf65d
Turns out, my logic was wrong in any case. Remove errant not. Change-Id: I735ee1b4364060aa1476160777e196878a5a208e
-rw-r--r--sw/source/core/crsr/crsrsh.cxx2
1 files changed, 1 insertions, 1 deletions
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 );