corrected last commit: Inflate() should be Deflate()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41734 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-10-08 16:30:54 +00:00
parent 3ba6891d6a
commit 844b9f5fd2

View File

@ -226,7 +226,7 @@ wxRendererMSW::DrawPushButton(wxWindow * WXUNUSED(win),
wxDCPenChanger pen(dc, *wxBLACK_PEN);
wxDCBrushChanger brush(dc, *wxTRANSPARENT_BRUSH);
dc.DrawRectangle(rect);
rect.Inflate(1);
rect.Deflate(1);
}
RECT rc;