Kaydet (Commit) eadba44a authored tarafından Julien Nabet's avatar Julien Nabet

Revert "Fix some layout values"

Nothing proves this is ok since no feedback.
Moreover, since it's only of the assumption that setWidth and setHeight
should have value >= 0 or -1, let's revert this one.

This reverts commit d467214a.

Change-Id: Ia030706d150afaebaedc0ec201814cca80db248a
Reviewed-on: https://gerrit.libreoffice.org/63171Reviewed-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
Tested-by: 's avatarJulien Nabet <serval2412@yahoo.fr>
üst 015e4266
...@@ -992,9 +992,9 @@ void SdXMLExport::ImpWriteAutoLayoutInfos() ...@@ -992,9 +992,9 @@ void SdXMLExport::ImpWriteAutoLayoutInfos()
{ {
case 22 : nColCnt = 1; nRowCnt = 1; break; case 22 : nColCnt = 1; nRowCnt = 1; break;
case 23 : nColCnt = 1; nRowCnt = 2; break; case 23 : nColCnt = 1; nRowCnt = 2; break;
case 24 : nColCnt = 2; nRowCnt = 3; break; case 24 : nColCnt = 1; nRowCnt = 3; break;
case 25 : nColCnt = 2; nRowCnt = 2; break; case 25 : nColCnt = 2; nRowCnt = 2; break;
case 26 : nColCnt = 2; nRowCnt = 3; break; case 26 : nColCnt = 3; nRowCnt = 2; break;
case 31 : nColCnt = 3; nRowCnt = 3; break; case 31 : nColCnt = 3; nRowCnt = 3; break;
default: nColCnt = 0; nRowCnt = 0; break; // FIXME - What is correct values? default: nColCnt = 0; nRowCnt = 0; break; // FIXME - What is correct values?
} }
......
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