diff options
author | Christian Lippka <cl@openoffice.org> | 2001-07-04 12:11:51 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2001-07-04 12:11:51 +0000 |
commit | 750cdab6eb190ac9a93c1f10912799f4777e8518 (patch) | |
tree | 26c8adea59f14ce643d0a899dea65cf405256bf1 | |
parent | 26924cfd40b341202983acd3c6d938b79c9bf93c (diff) |
#86900# shapes do not need own para map any longer
-rw-r--r-- | xmloff/source/text/txtprmap.cxx | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/xmloff/source/text/txtprmap.cxx b/xmloff/source/text/txtprmap.cxx index f806a3cf8ca4..d0b2f75a0e9e 100644 --- a/xmloff/source/text/txtprmap.cxx +++ b/xmloff/source/text/txtprmap.cxx @@ -2,9 +2,9 @@ * * $RCSfile: txtprmap.cxx,v $ * - * $Revision: 1.54 $ + * $Revision: 1.55 $ * - * last change: $Author: dvo $ $Date: 2001-06-29 21:07:22 $ + * last change: $Author: cl $ $Date: 2001-07-04 13:11:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -760,6 +760,7 @@ XMLPropertyMapEntry *lcl_txtprmap_getMap( sal_uInt16 nType ) case TEXT_PROP_MAP_TEXT: pMap = aXMLTextPropMap; break; + case TEXT_PROP_MAP_SHAPE_PARA: case TEXT_PROP_MAP_PARA: pMap = aXMLParaPropMap; break; @@ -779,11 +780,6 @@ XMLPropertyMapEntry *lcl_txtprmap_getMap( sal_uInt16 nType ) case TEXT_PROP_MAP_RUBY: pMap = aXMLRubyPropMap; break; - case TEXT_PROP_MAP_SHAPE_PARA: - pMap = &aXMLParaPropMap[8]; - DBG_ASSERT( pMap->meXMLName == XML_FONT_VARIANT, - "paragraph map changed" ); - break; } DBG_ASSERT( pMap, "illegal map type" ); return pMap; |