compilation fix for wxPenRefData operator==()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42986 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -38,7 +38,8 @@ class wxPenRefData: public wxObjectRefData
|
||||
// we intentionally don't compare m_hPen fields here
|
||||
return m_style == data.m_style &&
|
||||
m_width == data.m_width &&
|
||||
m_pixPattern == data.m_pixPattern &&
|
||||
memcmp(m_pixPattern,
|
||||
data.m_pixPattern, sizeof(m_pixPattern)) == 0 &&
|
||||
m_capStyle == data.m_capStyle &&
|
||||
m_joinStyle == data.m_joinStyle &&
|
||||
m_colour == data.m_colour &&
|
||||
|
Reference in New Issue
Block a user