From 6631a2a562fc35a0faf639ed287ea801fcef1176 Mon Sep 17 00:00:00 2001 From: David Elliott Date: Wed, 9 Jul 2003 18:31:34 +0000 Subject: [PATCH] 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 --- src/cocoa/brush.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cocoa/brush.mm b/src/cocoa/brush.mm index bb835b291b..753c947cea 100644 --- a/src/cocoa/brush.mm +++ b/src/cocoa/brush.mm @@ -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; } -- 2.45.2