diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2015-11-05 23:43:05 +0100 |
---|---|---|
committer | Tomaž Vajngerl <tomaz.vajngerl@collabora.com> | 2015-11-08 19:39:13 +0100 |
commit | b409cd73a9b68d498c7d3de81013d2cbd8331243 (patch) | |
tree | 5534d0ecb75574a45fcbf7feebbbf02036970c62 /sd | |
parent | f2b6ba8ad193354d2b34812d8040b48ffde6646c (diff) |
pptx: import/export corner directions correctly
Change-Id: Id2e9234c200c9544af31c07e7c5a13c7ae69d9b3
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/filter/eppt/pptx-epptooxml.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx b/sd/source/filter/eppt/pptx-epptooxml.cxx index 2c42be6ae028..7ffae976664e 100644 --- a/sd/source/filter/eppt/pptx-epptooxml.cxx +++ b/sd/source/filter/eppt/pptx-epptooxml.cxx @@ -471,16 +471,16 @@ const char* PowerPointExport::GetCornerDirection( sal_uInt8 nDirection ) switch( nDirection ) { case 4: - pDirection = "rd"; + pDirection = "lu"; break; case 5: - pDirection = "ld"; + pDirection = "ru"; break; case 6: - pDirection = "ru"; + pDirection = "ld"; break; case 7: - pDirection = "lu"; + pDirection = "rd"; break; } |