fixed parameters to Blit()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31228 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2005-01-04 10:56:02 +00:00
parent 408aef5ec1
commit 1480c61ae8

View File

@ -471,8 +471,8 @@ void wxNewBitmapButton::RenderLabelImage( wxBitmap*& destBmp, wxBitmap* srcBmp,
{
destDc.Blit( imgPos.x, imgPos.y,
srcBmp->GetWidth()+1,
srcBmp->GetHeight()+1,
srcBmp->GetWidth(),
srcBmp->GetHeight(),
&srcDc, 0,0, wxCOPY,true );
}