summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-09-30 12:50:07 +0200
committerNoel Grandin <noel@peralex.com>2014-09-30 12:50:43 +0200
commitd8c05aa3b9fb6d364511bf416f21e827438ad16b (patch)
treed09d9c08aa44ae28132c4ee5aab028d0b6c7e6ac /vcl
parent2d7b5dd5f943a898fec190eff565639245a9c14b (diff)
fix windows build
after commit c9d4a2887c13a5df244022276dd79a5bef8af0ea "fdo#82577: Handle PolyPolygon" Change-Id: Id7b06bc1889bd84c37b1d4b7ddd542ad1d12ada2
Diffstat (limited to 'vcl')
-rw-r--r--vcl/win/source/gdi/wntgdi.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/source/gdi/wntgdi.cxx b/vcl/win/source/gdi/wntgdi.cxx
index d371c7802418..7beb176814bd 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 );
}
}