diff options
author | Noel Grandin <noel@peralex.com> | 2015-09-21 10:43:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-09-22 20:21:55 +0200 |
commit | 1c061348aa573967132349736675f81bcf5e46af (patch) | |
tree | 33fe1a51b1f03499469b5f5339b812efac047845 /include | |
parent | ba6cbddd8890b3a5693a187b32c9b92a67511f3d (diff) |
convert Link<> to typed
and drop an unused parameter
Change-Id: I2f3bc15e4168103a6cb2d19807d291d8da24387e
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/bitmap.hxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/include/vcl/bitmap.hxx b/include/vcl/bitmap.hxx index b11fb646cc66..64ff2dca41ec 100644 --- a/include/vcl/bitmap.hxx +++ b/include/vcl/bitmap.hxx @@ -624,15 +624,11 @@ public: Whether the inline or the outline of the color areas should be represented by the polygon - @param pProgress - A callback for showing the progress of the vectorization - @return true, if the operation was completed successfully. */ bool Vectorize( tools::PolyPolygon& rPolyPoly, - BmpVectorizeFlags nFlags = BmpVectorizeFlags::Outer, - const Link<>* pProgress = NULL ); + BmpVectorizeFlags nFlags = BmpVectorizeFlags::Outer ); /** Convert the bitmap to a meta file @@ -659,7 +655,7 @@ public: GDIMetaFile& rMtf, sal_uInt8 cReduce = 0, BmpVectorizeFlags nFlags = BmpVectorizeFlags::Inner, - const Link<>* pProgress = NULL ); + const Link<long,void>* pProgress = NULL ); /** Change various global color characteristics |