vcl/quartz/salbmp.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 438f2db139dfee1036da3baae85c82c9a14448b5 Author: Jochen Nitschke <[email protected]> Date: Sun May 1 14:43:38 2016 +0200 fix copy&paste error since commit 4cab94239be70bd5800a8808652514f14501d303 Change-Id: I8fbd55977bdf8531a66123948c0c4d23657713d4 Reviewed-on: https://gerrit.libreoffice.org/24558 Tested-by: Jenkins <[email protected]> Reviewed-by: Julien Nabet <[email protected]> diff --git a/vcl/quartz/salbmp.cxx b/vcl/quartz/salbmp.cxx index 8603f26..4a1a9f0 100644 --- a/vcl/quartz/salbmp.cxx +++ b/vcl/quartz/salbmp.cxx @@ -605,7 +605,7 @@ void QuartzSalBitmap::ConvertBitmapData( sal_uInt32 nWidth, sal_uInt32 nHeight, BitmapBuffer aDstBuf; aDstBuf.mnFormat = BMP_FORMAT_32BIT_TC_ARGB; aDstBuf.mpBits = pDestData; - aSrcBuf.mnBitCount = nDestBits; + aDstBuf.mnBitCount = nDestBits; aDstBuf.mnScanlineSize = nDestBytesPerRow; aSrcBuf.mnWidth = aDstBuf.mnWidth = nWidth; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
