diff options
-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; } |