https://bugs.documentfoundation.org/show_bug.cgi?id=123109

Julien Nabet <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected],
                   |                            |[email protected]

--- Comment #1 from Julien Nabet <[email protected]> ---
Miklos:
looking at
https://opengrok.libreoffice.org/xref/core/writerfilter/source/rtftok/rtfdispatchvalue.cxx?r=6d38fc3d#1381
1392                  case RTF_CLPADB:
1393                      nSprm = NS_ooxml::LN_CT_TcMar_bottom;
1394                      break;
1395                  case RTF_CLPADL:
1396                      nSprm = NS_ooxml::LN_CT_TcMar_top;
1397                      break;
1398                  case RTF_CLPADR:
1399                      nSprm = NS_ooxml::LN_CT_TcMar_right;
1400                      break;
1401                  case RTF_CLPADT:
1402                      nSprm = NS_ooxml::LN_CT_TcMar_left;
1403                      break;

Shouldn't it be:
1395                  case RTF_CLPADT:
1396                      nSprm = NS_ooxml::LN_CT_TcMar_top;
1397                      break;
1401                  case RTF_CLPADL:
1402                      nSprm = NS_ooxml::LN_CT_TcMar_left;
1403                      break;
?

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to