[Libreoffice-commits] core.git: sw/source

Noel Grandin noel.grandin at collabora.co.uk
Fri Mar 23 07:30:21 UTC 2018


 sw/source/core/layout/paintfrm.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 327fd7ea7209c9131ac86757fa8d5ca925eeccb5
Author: Noel Grandin <noel.grandin at collabora.co.uk>
Date:   Fri Mar 23 08:21:30 2018 +0200

    tdf#116525 writer, no shadow around box
    
    regression from
    
        commit 2ccde70d60d3a5074faf49260e8fe0ccdb91ff26
        teach redundantcast plugin about functional casts
    
    because we are now passing the same variable as a both an in-parameter
    and an out-parameter
    
    Change-Id: I6454103fbc46530180cde5f725273e062eb2e25d
    Reviewed-on: https://gerrit.libreoffice.org/51757
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/sw/source/core/layout/paintfrm.cxx b/sw/source/core/layout/paintfrm.cxx
index cd9d53cfbd74..f8baf5e1903e 100644
--- a/sw/source/core/layout/paintfrm.cxx
+++ b/sw/source/core/layout/paintfrm.cxx
@@ -4755,7 +4755,7 @@ void PaintCharacterBorder(
 
         if( aShadow.GetLocation() != SvxShadowLocation::NONE )
         {
-            lcl_PaintShadow( aAlignedRect, aAlignedRect, aShadow,
+            lcl_PaintShadow( rPaintArea, aAlignedRect, aShadow,
                              false, bTop, bBottom, bLeft, bRight, gProp);
         }
     }


More information about the Libreoffice-commits mailing list