[Libreoffice-commits] core.git: vcl/win
Noel Grandin
noel at peralex.com
Tue Sep 30 03:51:43 PDT 2014
vcl/win/source/gdi/wntgdi.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit d8c05aa3b9fb6d364511bf416f21e827438ad16b
Author: Noel Grandin <noel at peralex.com>
Date: Tue Sep 30 12:50:07 2014 +0200
fix windows build
after commit c9d4a2887c13a5df244022276dd79a5bef8af0ea
"fdo#82577: Handle PolyPolygon"
Change-Id: Id7b06bc1889bd84c37b1d4b7ddd542ad1d12ada2
diff --git a/vcl/win/source/gdi/wntgdi.cxx b/vcl/win/source/gdi/wntgdi.cxx
index d371c78..7beb176 100644
--- a/vcl/win/source/gdi/wntgdi.cxx
+++ b/vcl/win/source/gdi/wntgdi.cxx
@@ -45,7 +45,7 @@ extern "C"
{
BOOL WINAPI WIN_PolyPolygon( HDC hDC, CONST POINT * ppt, LPINT npcnt, int ncnt )
{
- return tools::PolyPolygon( hDC, ppt, npcnt, ncnt );
+ return PolyPolygon( hDC, ppt, npcnt, ncnt );
}
}
More information about the Libreoffice-commits
mailing list