[Libreoffice-commits] .: editeng/source

Michael Stahl mst at kemper.freedesktop.org
Thu Jul 5 12:40:34 PDT 2012


 editeng/source/items/borderline.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 927f1e56d57ef9238a4574699ae36626b3daaf22
Author: Michael Stahl <mstahl at redhat.com>
Date:   Thu Jul 5 18:28:41 2012 +0200

    ConvertBorderWidthToWord: fix wrong INSET/OUSET conversion:
    
    This should do the inverse of ConvertBorderWidthFromWord.
    
    Change-Id: If0b2a8a83a7faa6600a07ecfcb13a124d7cdeab6

diff --git a/editeng/source/items/borderline.cxx b/editeng/source/items/borderline.cxx
index 225d914..704bbfa 100644
--- a/editeng/source/items/borderline.cxx
+++ b/editeng/source/items/borderline.cxx
@@ -224,11 +224,11 @@ ConvertBorderWidthToWord(SvxBorderStyle const eStyle, double const fWidth)
             break;
 
         case OUTSET:
-            return (fWidth / 2.0) - OUTSET_line1;
+            return (fWidth - OUTSET_line1) / 2.0;
             break;
 
         case INSET:
-            return (fWidth / 2.0) - INSET_line2;
+            return (fWidth - INSET_line2) / 2.0;
             break;
 
         default:


More information about the Libreoffice-commits mailing list