Kaydet (Commit) b409cd73 authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl

pptx: import/export corner directions correctly

Change-Id: Id2e9234c200c9544af31c07e7c5a13c7ae69d9b3
üst f2b6ba8a
...@@ -471,16 +471,16 @@ const char* PowerPointExport::GetCornerDirection( sal_uInt8 nDirection ) ...@@ -471,16 +471,16 @@ const char* PowerPointExport::GetCornerDirection( sal_uInt8 nDirection )
switch( nDirection ) { switch( nDirection ) {
case 4: case 4:
pDirection = "rd"; pDirection = "lu";
break; break;
case 5: case 5:
pDirection = "ld"; pDirection = "ru";
break; break;
case 6: case 6:
pDirection = "ru"; pDirection = "ld";
break; break;
case 7: case 7:
pDirection = "lu"; pDirection = "rd";
break; break;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment