vcl/source/gdi/outdev2.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
New commits: commit 37750daee2577f6977f3130a85bbb4a16488abd8 Author: Norbert Thiebaud <nthieb...@gmail.com> Date: Sat Mar 22 01:33:55 2014 -0500 casting to void to silence a WaE lead to windows complaining. Change-Id: I203b52d0a80dd3c04b75aab7e8a683b609e3efba diff --git a/vcl/source/gdi/outdev2.cxx b/vcl/source/gdi/outdev2.cxx index 25a687d..5e68c71 100644 --- a/vcl/source/gdi/outdev2.cxx +++ b/vcl/source/gdi/outdev2.cxx @@ -330,13 +330,12 @@ void OutputDevice::DrawOutDev( const Point& rDestPt, const Size& rDestSize, void OutputDevice::DrawOutDev( const Point& rDestPt, const Size& rDestSize, const Point& rSrcPt, const Size& rSrcSize, - const Printer& rOutDev ) + const Printer& /* rOutDev */ ) { (void) rDestPt; (void) rDestSize; (void) rSrcPt; (void) rSrcSize; - (void) rOutDev; // This should never occur! You can't call this function on a Printer instance DBG_ASSERT( false, "Don't use OutputDevice::DrawOutDev(...) with printer devices!" ); } _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits