diff options
-rw-r--r-- | vcl/source/outdev/hatch.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/outdev/hatch.cxx b/vcl/source/outdev/hatch.cxx index 743db9ebed8c..af1e7b359b50 100644 --- a/vcl/source/outdev/hatch.cxx +++ b/vcl/source/outdev/hatch.cxx @@ -31,7 +31,7 @@ #define HATCH_MAXPOINTS 1024 -extern "C" int SAL_CALL ImplHatchCmpFnc( const void* p1, const void* p2 ) +extern "C" int SAL_CALL HatchCmpFnc( const void* p1, const void* p2 ) { const long nX1 = ( (Point*) p1 )->X(); const long nX2 = ( (Point*) p2 )->X(); @@ -374,7 +374,7 @@ void OutputDevice::DrawHatchLine( const Line& rLine, const PolyPolygon& rPolyPol if( nPCounter > 1 ) { - qsort( pPtBuffer, nPCounter, sizeof( Point ), ImplHatchCmpFnc ); + qsort( pPtBuffer, nPCounter, sizeof( Point ), HatchCmpFnc ); if( nPCounter & 1 ) nPCounter--; |