diff options
author | Christian Lippka <cl@openoffice.org> | 2002-10-11 08:11:27 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2002-10-11 08:11:27 +0000 |
commit | 72856692fde47587068273223ec9a7d87102cd9f (patch) | |
tree | dbc34c77b695cf767085287755075cf43a2a5f58 /xmloff | |
parent | 397c26ce82110630a07f9660e9b2fa55368cac7e (diff) |
#103516# added justify for vertical text alignment
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/dtd/drawing.mod | 4 | ||||
-rw-r--r-- | xmloff/source/draw/sdpropls.cxx | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/xmloff/dtd/drawing.mod b/xmloff/dtd/drawing.mod index c0388ae99db7..bb90337e8a06 100644 --- a/xmloff/dtd/drawing.mod +++ b/xmloff/dtd/drawing.mod @@ -1,5 +1,5 @@ <!-- - $Id: drawing.mod,v 1.79 2002-10-09 16:08:24 cl Exp $ + $Id: drawing.mod,v 1.80 2002-10-11 09:10:23 cl Exp $ The Contents of this file are made available subject to the terms of either of the following licenses @@ -341,7 +341,7 @@ <!ATTLIST style:properties draw:fit-to-size %boolean; #IMPLIED> <!ATTLIST style:properties draw:fit-to-contour %boolean; #IMPLIED> <!ATTLIST style:properties draw:textarea-horizontal-align ( left | center | right | justify ) #IMPLIED> -<!ATTLIST style:properties draw:textarea-vertical-align ( top | middle | bottom ) #IMPLIED> +<!ATTLIST style:properties draw:textarea-vertical-align ( top | middle | bottom | justify ) #IMPLIED> <!ATTLIST style:properties draw:writing-mode (lr-tb|tb-rl) "lr-tb"> <!-- fill attributes --> diff --git a/xmloff/source/draw/sdpropls.cxx b/xmloff/source/draw/sdpropls.cxx index 18f03d8a8f70..c55795b2a999 100644 --- a/xmloff/source/draw/sdpropls.cxx +++ b/xmloff/source/draw/sdpropls.cxx @@ -2,9 +2,9 @@ * * $RCSfile: sdpropls.cxx,v $ * - * $Revision: 1.58 $ + * $Revision: 1.59 $ * - * last change: $Author: cl $ $Date: 2002-10-09 16:06:24 $ + * last change: $Author: cl $ $Date: 2002-10-11 09:11:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -695,6 +695,7 @@ SvXMLEnumMapEntry __READONLY_DATA pXML_VerticalAlign_Enum[] = { XML_TOP, drawing::TextVerticalAdjust_TOP }, { XML_MIDDLE, drawing::TextVerticalAdjust_CENTER }, { XML_BOTTOM, drawing::TextVerticalAdjust_BOTTOM }, + { XML_JUSTIFY, drawing::TextVerticalAdjust_BLOCK }, { XML_TOKEN_INVALID, 0 } }; |