[Libreoffice-commits] .: Branch 'libreoffice-3-6' - editeng/source

Michael Stahl mst at kemper.freedesktop.org
Thu Jul 5 12:42:25 PDT 2012


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

New commits:
commit b7179e78ede390bd87425e828beeabb2a8be93a3
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
    (cherry picked from commit 927f1e56d57ef9238a4574699ae36626b3daaf22)

diff --git a/editeng/source/items/borderline.cxx b/editeng/source/items/borderline.cxx
index f6e184f..9f538c2 100644
--- a/editeng/source/items/borderline.cxx
+++ b/editeng/source/items/borderline.cxx
@@ -227,11 +227,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