diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2014-09-27 16:59:48 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2014-09-29 18:56:14 +0200 |
commit | f6fa78766ff7b6ed9f18228cfac21dccbd88706e (patch) | |
tree | 1f4ad46d28ca214bd1fe24cdc76507a7031b93e8 | |
parent | 7d07cefa0e6fa7a1dc1ae0e22f0625975e8f57ac (diff) |
docx ST_VAnchor does not know "column", it should be "text"
Change-Id: I3a5ab08e349c5c071373cda2f62e3cea593e263c
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index 16f470041f53..0b703ad8ad9c 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -7332,7 +7332,7 @@ void DocxAttributeOutput::FormatVertOrientation( const SwFmtVertOrient& rFlyVert case text::RelOrientation::CHAR: case text::RelOrientation::PRINT_AREA: case text::RelOrientation::TEXT_LINE: - sVAnchor = OString( "column" ); + sVAnchor = OString( "text" ); break; case text::RelOrientation::FRAME: case text::RelOrientation::PAGE_LEFT: |