From d161c23a1c343ec50a232cc8d629e453581913d2 Mon Sep 17 00:00:00 2001 From: Michael Schmitt Date: Thu, 23 Nov 2006 21:46:39 +0000 Subject: [PATCH] * src/CutAndPaste.C: white spaces only git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16018 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/CutAndPaste.C | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/CutAndPaste.C b/src/CutAndPaste.C index 88fbbb6141..41aa5ac3b9 100644 --- a/src/CutAndPaste.C +++ b/src/CutAndPaste.C @@ -299,14 +299,13 @@ PitPosPair eraseSelectionHelper(BufferParams const & params, // FIXME: Change tracking (MG) bool const merge = !params.trackChanges || pars[pit].isInserted(pars[pit].size()); - pos_type const left = ( pit == startpit ? startpos : 0 ); - pos_type const right = ( pit == endpit ? endpos : - pars[pit].size() + 1 ); + pos_type const left = (pit == startpit ? startpos : 0); + pos_type const right = (pit == endpit ? endpos : pars[pit].size() + 1); // Logical erase only: pars[pit].eraseChars(left, right, false); // Separate handling of para break: if (merge && pit != endpit && - (pit + 1 != endpit || pars[pit].hasSameLayout(pars[pit + 1]))) { + (pit + 1 != endpit || pars[pit].hasSameLayout(pars[pit + 1]))) { pos_type const thissize = pars[pit].size(); if (doclear) pars[pit + 1].stripLeadingSpaces();