[Libreoffice-commits] core.git: vcl/aqua
Khaled Hosny
khaledhosny at eglug.org
Sat Jun 22 21:08:44 PDT 2013
vcl/aqua/source/gdi/salgdicommon.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit beb198b8c0dbb97a648d493bdcfb491436165eec
Author: Khaled Hosny <khaledhosny at eglug.org>
Date: Sat Jun 22 17:33:20 2013 +0200
fdo#50506, incomplete indent markers in Mac rulers
AquaSalGraphics::drawPolygon() should close the path like other polygon
drawing functions. It have been like that for 5 years since
3ca40fb8a2e8c805517b351ebd97c1385cfc92a3, no idea how it was never
noticed.
Change-Id: Ifba740afa66ad485943c7873d78e007b778cd7b3
Reviewed-on: https://gerrit.libreoffice.org/4448
Reviewed-by: Fridrich Strba <fridrich at documentfoundation.org>
Tested-by: Fridrich Strba <fridrich at documentfoundation.org>
diff --git a/vcl/aqua/source/gdi/salgdicommon.cxx b/vcl/aqua/source/gdi/salgdicommon.cxx
index e756168..45be91e 100644
--- a/vcl/aqua/source/gdi/salgdicommon.cxx
+++ b/vcl/aqua/source/gdi/salgdicommon.cxx
@@ -1042,6 +1042,7 @@ void AquaSalGraphics::drawPolygon( sal_uLong nPoints, const SalPoint *pPtAry )
}
}
+ CGContextClosePath( mrContext );
CGContextDrawPath( mrContext, eMode );
RefreshRect( nX, nY, nWidth, nHeight );
}
More information about the Libreoffice-commits
mailing list