From 544a3dd1f87aaa14be145963eb70a5d022c68e8c Mon Sep 17 00:00:00 2001 From: Daniel Vogelheim Date: Wed, 10 Oct 2001 14:51:26 +0000 Subject: #92945# Fixed redline import (Previously, the Redline Cursor adjustment for redlines outside of paragraphs was also triggered in cases where it shouldn't.) --- xmloff/source/text/XMLChangeImportContext.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xmloff') diff --git a/xmloff/source/text/XMLChangeImportContext.cxx b/xmloff/source/text/XMLChangeImportContext.cxx index 0159dbd70320..f7fe7f6ddbcf 100644 --- a/xmloff/source/text/XMLChangeImportContext.cxx +++ b/xmloff/source/text/XMLChangeImportContext.cxx @@ -2,9 +2,9 @@ * * $RCSfile: XMLChangeImportContext.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: dvo $ $Date: 2001-06-29 21:07:21 $ + * last change: $Author: dvo $ $Date: 2001-10-10 15:51:26 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -144,7 +144,7 @@ void XMLChangeImportContext::StartElement( // outside of paragraph and still open? set open redline ID if (bIsStart) { - if (bIsOutsideOfParagraph || !bIsEnd) + if (bIsOutsideOfParagraph && !bIsEnd) rHelper->SetOpenRedlineId(rID); else rHelper->ResetOpenRedlineId(); -- cgit