X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0d801d09f9fffbc330c31a0c5cb8707673376b01..0c1cc9483ecba053bc9a0983a4a8d48898e334f2:/src/msw/control.cpp diff --git a/src/msw/control.cpp b/src/msw/control.cpp index d4ae78000a..24a4e37f2c 100644 --- a/src/msw/control.cpp +++ b/src/msw/control.cpp @@ -144,8 +144,8 @@ bool wxControl::MSWCreateControl(const wxChar *classname, label.wx_str(), // the window name style, // the window style x, y, w, h, // the window position and size - GetHwndOf(GetParent()), // parent - (HMENU)GetId(), // child id + GetHwndOf(GetParent()), // parent + (HMENU)wxUIntToPtr(GetId()), // child id wxGetInstance(), // app instance NULL // creation parameters ); @@ -392,10 +392,9 @@ WXHBRUSH wxControl::DoMSWControlColor(WXHDC pDC, wxColour colBg, WXHWND hWnd) ::SetBkColor(hdc, wxColourToRGB(colBg)); // draw children with the same colour as the parent - wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBg, wxSOLID); - + wxBrush *brush = wxTheBrushList->FindOrCreateBrush(colBg, + wxBRUSHSTYLE_SOLID); hbr = (WXHBRUSH)brush->GetResourceHandle(); - } // if we use custom background, we should set foreground ourselves too