Applied patch [ 709618 ] fixes drawing position in wxPrinterDC::DoBlit()
wxPrinterDC::DoBlit() in current CVS is drawing to the source coords rather than the dest coords. This patch corrects that. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19965 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -436,7 +436,7 @@ bool wxPrinterDC::DoBlit(wxCoord xdest, wxCoord ydest,
|
||||
else // no mask
|
||||
{
|
||||
if ( !(::GetDeviceCaps(GetHdc(), RASTERCAPS) & RC_STRETCHDIB) ||
|
||||
!DrawBitmapUsingStretchDIBits(GetHdc(), bmp, xsrc, ysrc) )
|
||||
!DrawBitmapUsingStretchDIBits(GetHdc(), bmp, xdest, ydest) )
|
||||
{
|
||||
// no support for StretchDIBits
|
||||
|
||||
|
Reference in New Issue
Block a user