From: Mattia Barbon Date: Tue, 30 Oct 2001 20:52:35 +0000 (+0000) Subject: Fixed wxMask::Create(bitmap,colour) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/25acfd4ca34c7b1beb34eca73ee33c5297f5c021 Fixed wxMask::Create(bitmap,colour) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12220 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/bitmap.cpp b/src/msw/bitmap.cpp index 4f60c09474..c4b2b8bed5 100644 --- a/src/msw/bitmap.cpp +++ b/src/msw/bitmap.cpp @@ -1087,7 +1087,7 @@ bool wxMask::Create(const wxBitmap& bitmap, const wxColour& colour) // scan the bitmap for the transparent colour and set the corresponding // pixels in the mask to BLACK and the rest to WHITE - COLORREF maskColour = wxColourToRGB(colour); + COLORREF maskColour = RGB(colour.Red(), colour.Green(), colour.Blue()); m_maskBitmap = (WXHBITMAP)::CreateBitmap(width, height, 1, 1, 0); HDC srcDC = ::CreateCompatibleDC(NULL);