[Libreoffice-commits] core.git: vcl/source
Norbert Thiebaud
nthiebaud at gmail.com
Fri Mar 21 23:35:22 PDT 2014
vcl/source/gdi/outdev2.cxx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 37750daee2577f6977f3130a85bbb4a16488abd8
Author: Norbert Thiebaud <nthiebaud at 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!" );
}
More information about the Libreoffice-commits
mailing list