diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-21 23:45:47 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2014-04-22 02:30:37 +1000 |
commit | ce224a70a83d11f6eedea68b3bb8318e2e36f64d (patch) | |
tree | fd48698329261fb2ab777c28bc2f3627b1fda467 | |
parent | b302925d075ff377d58eee609e02017e35292108 (diff) |
Renamed function ImplHatchCmpFnc to HatchCmpFnc
Change-Id: Idcb2b3c1ad1830bb781b5a9a0527dd2a08ef2b18
-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--; |