git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42766
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
if (attr.HasFlag(wxTEXT_ATTR_URL))
{
{
if (attr.HasFlag(wxTEXT_ATTR_URL))
{
- if (GetCursor() != m_urlCursor)
+ if (!GetCursor().IsRefTo(&m_urlCursor))
SetCursor(m_urlCursor);
}
else if (!attr.HasFlag(wxTEXT_ATTR_URL))
{
SetCursor(m_urlCursor);
}
else if (!attr.HasFlag(wxTEXT_ATTR_URL))
{
- if (GetCursor() != m_textCursor)
+ if (!GetCursor().IsRefTo(&m_textCursor))
SetCursor(m_textCursor);
}
}
SetCursor(m_textCursor);
}
}