]> git.saurik.com Git - wxWidgets.git/commitdiff
Correct the fix that broke wxRegion::ConvertToBitmap().
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 20 Oct 2010 23:11:04 +0000 (23:11 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 20 Oct 2010 23:11:04 +0000 (23:11 +0000)
The changes in r64874 were incorrect and made the size of the bitmap even
more wrong than before. Fix it correctly now by just adding 1 extra pixel to
the size of the bitmap used in the original (pre-r64874) version.

Closes #12213.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65854 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/rgncmn.cpp

index 44305243f7b15349ad001ee9c76f6ac1d5f39425..93de0d48f84f69e2d4280d9ac0ba68e598aad8f0 100644 (file)
@@ -60,7 +60,7 @@ bool wxRegionBase::IsEqual(const wxRegion& region) const
 wxBitmap wxRegionBase::ConvertToBitmap() const
 {
     wxRect box = GetBox();
-    wxBitmap bmp(box.GetWidth(), box.GetHeight());
+    wxBitmap bmp(box.GetRight() + 1, box.GetBottom() + 1);
     wxMemoryDC dc;
     dc.SelectObject(bmp);
     dc.SetBackground(*wxBLACK_BRUSH);