wxBrushRefData constructor: m_style = style instead of wxSOLID

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21799 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott 2003-07-09 18:31:34 +00:00
parent 5180055b69
commit 6631a2a562

View File

@ -57,7 +57,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxBrush, wxGDIObject)
wxBrushRefData::wxBrushRefData(const wxColour& colour, int style)
{
m_cocoaNSColor = NULL;
m_style = wxSOLID;
m_style = style;
m_colour = colour;
}