WaE: unused parameters

Change-Id: I8dc4dadd3e26578500b555cdf850c3fb95bc1401
This commit is contained in:
Tor Lillqvist
2012-06-18 23:04:48 +03:00
parent 533092a738
commit ed880251bd

View File

@@ -585,7 +585,12 @@ void SAL_CALL VCLXToolkit::disposing()
ByteBufferWrapper *bbw = (ByteBufferWrapper *) (intptr_t) addressOfMemoryBufferForSharedArrayWrapper;
pV->SetOutputSizePixelScaleOffsetAndBuffer( Size( Width, Height ), Fraction(ScaleNumerator, ScaleDenominator), Point( XOffset, YOffset), basebmp::RawMemorySharedArray( bbw->pointer(), *bbw ));
#else
(void) ScaleNumerator;
(void) ScaleDenominator;
(void) XOffset;
(void) YOffset;
OSL_FAIL( "rendering to a pre-allocated buffer not done yet for this OS" );
pV->SetOutputSizePixel( Size( Width, Height ) );
#endif
} else {
pV->SetOutputSizePixel( Size( Width, Height ) );