summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2019-11-19 20:05:52 +0100
committerJulien Nabet <serval2412@yahoo.fr>2019-11-20 09:13:54 +0100
commit8a82100c8274d3c0e6d8386116fe8c48543fc4c3 (patch)
tree7ea42030cf7db5f375a286d7f77ae2c26c4af891
parent9c9c047f42637c274b246fb4020ed0df4ee39ded (diff)
Comment some code which resembles a wrong copypaste (sw/portxt)
Thank you Miklos and Michael S! Change-Id: Ia24e2b9d39d919c26be3c7a5c38f9de875aad2e5 Reviewed-on: https://gerrit.libreoffice.org/83228 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--sw/source/core/text/portxt.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sw/source/core/text/portxt.cxx b/sw/source/core/text/portxt.cxx
index 0460cb343dd3..3a0ddd46d068 100644
--- a/sw/source/core/text/portxt.cxx
+++ b/sw/source/core/text/portxt.cxx
@@ -814,6 +814,10 @@ bool SwFieldFormCheckboxPortion::Format( SwTextFormatInfo & rInf )
OSL_ENSURE(pBM && pBM->GetFieldname( ) == ODF_FORMCHECKBOX, "Where is my form field bookmark???");
if (pBM && pBM->GetFieldname( ) == ODF_FORMCHECKBOX)
{
+ // the width of the checkbox portion is the same as its height since it's a square
+ // and that size depends on the font size.
+ // See:
+ // http://document-foundation-mail-archive.969070.n3.nabble.com/Wrong-copy-paste-in-SwFieldFormCheckboxPortion-Format-td4269112.html
Width( rInf.GetTextHeight( ) );
Height( rInf.GetTextHeight( ) );
SetAscent( rInf.GetAscent( ) );