Fixed another unitialised field in wxBrush for wxQT

This commit is contained in:
Graham Dawes
2019-01-11 08:17:49 +00:00
parent 337879f222
commit 5d3366abb9

View File

@@ -68,9 +68,9 @@ class wxBrushRefData: public wxGDIRefData
}
wxBrushRefData( const wxBrushRefData& data )
: wxGDIRefData()
{
m_qtBrush = data.m_qtBrush;
m_style = data.m_style;
}
bool operator == (const wxBrushRefData& data) const