diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-07-05 18:28:41 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-07-05 21:37:31 +0200 |
commit | 927f1e56d57ef9238a4574699ae36626b3daaf22 (patch) | |
tree | 9590899c31407cb2ea0ba8945a30e3d2307f0b30 /editeng | |
parent | 757a346159dd51ae65767bce98a12826fef179b6 (diff) |
ConvertBorderWidthToWord: fix wrong INSET/OUSET conversion:
This should do the inverse of ConvertBorderWidthFromWord.
Change-Id: If0b2a8a83a7faa6600a07ecfcb13a124d7cdeab6
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/borderline.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/items/borderline.cxx b/editeng/source/items/borderline.cxx index 225d91482d55..704bbfa8d12e 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: |