diff options
author | Daniel Vogelheim <dvo@openoffice.org> | 2001-01-02 13:46:22 +0000 |
---|---|---|
committer | Daniel Vogelheim <dvo@openoffice.org> | 2001-01-02 13:46:22 +0000 |
commit | 7858a29483f667a20430efe01fbe3243a1b5469f (patch) | |
tree | 3fa8074277582fa6b285eb3dd5a2ff8a48b13dc7 | |
parent | 9fba2179673b58e6335dfc17618bb42595ce1b92 (diff) |
fixed: Redline-Portion start/end (IsStart-property)
-rw-r--r-- | sw/source/core/unocore/unoport.cxx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sw/source/core/unocore/unoport.cxx b/sw/source/core/unocore/unoport.cxx index bc85445bf8c2..7e0c1cd0bb36 100644 --- a/sw/source/core/unocore/unoport.cxx +++ b/sw/source/core/unocore/unoport.cxx @@ -2,9 +2,9 @@ * * $RCSfile: unoport.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: os $ $Date: 2000-12-19 15:58:20 $ + * last change: $Author: dvo $ $Date: 2001-01-02 14:46:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -379,12 +379,14 @@ uno::Any SwXTextPortion::getPropertyValue(const OUString& rPropertyName) throw( switch (ePortionType) { case PORTION_REFMARK_START: - case PORTION_BOOKMARK_START : + case PORTION_BOOKMARK_START: case PORTION_TOXMARK_START: + case PORTION_REDLINE_START: break; case PORTION_REFMARK_END: case PORTION_TOXMARK_END: - case PORTION_BOOKMARK_END : bStart = FALSE; + case PORTION_BOOKMARK_END: + case PORTION_REDLINE_END: bStart = FALSE; break; default: bPut = FALSE; |