diff options
author | Daniel Vogelheim <dvo@openoffice.org> | 2002-06-19 12:09:48 +0000 |
---|---|---|
committer | Daniel Vogelheim <dvo@openoffice.org> | 2002-06-19 12:09:48 +0000 |
commit | 8517c99ea1cae33861c7c100afd7d100a7fe26ef (patch) | |
tree | b63a70a690a6e3d9a105f49a243acd347c9de76b /xmloff | |
parent | 42fa9cf8cef81b34f323a715675f8dda57787ba2 (diff) |
#98281# add style:writing-mode attribute to paragraph and section styles
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/text/txtprmap.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/xmloff/source/text/txtprmap.cxx b/xmloff/source/text/txtprmap.cxx index eff449be1f9d..4d2b561d3f9d 100644 --- a/xmloff/source/text/txtprmap.cxx +++ b/xmloff/source/text/txtprmap.cxx @@ -2,9 +2,9 @@ * * $RCSfile: txtprmap.cxx,v $ * - * $Revision: 1.65 $ + * $Revision: 1.66 $ * - * last change: $Author: dvo $ $Date: 2002-04-05 09:51:34 $ + * last change: $Author: dvo $ $Date: 2002-06-19 13:09:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -369,6 +369,8 @@ XMLPropertyMapEntry aXMLParaPropMap[] = // RES_PARATR_SNAPTOGRID M_E( "SnapToGrid", STYLE, SNAP_TO_LAYOUT_GRID, XML_TYPE_BOOL, 0 ), + M_E( "WritingMode", STYLE, WRITING_MODE, XML_TYPE_TEXT_WRITING_MODE_WITH_DEFAULT, 0 ), + M_END() }; @@ -739,6 +741,8 @@ XMLPropertyMapEntry aXMLSectionPropMap[] = M_E( "DontBalanceTextColumns", TEXT, DONT_BALANCE_TEXT_COLUMNS, XML_TYPE_BOOL, 0 ), + M_E( "WritingMode", STYLE, WRITING_MODE, XML_TYPE_TEXT_WRITING_MODE_WITH_DEFAULT, 0 ), + // section footnote settings M_E( "FootnoteIsOwnNumbering", TEXT, _EMPTY, MID_FLAG_SPECIAL_ITEM|XML_TYPE_BOOL, CTF_SECTION_FOOTNOTE_NUM_OWN ), M_E( "FootnoteIsRestartNumbering", TEXT, _EMPTY, MID_FLAG_SPECIAL_ITEM|XML_TYPE_BOOL, CTF_SECTION_FOOTNOTE_NUM_RESTART ), |