compile bug fixed in SetCursor

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster 2000-03-16 15:53:49 +00:00
parent aac67d4c3d
commit 13588544c5

View File

@ -588,7 +588,7 @@ bool wxWindowBase::SetCursor(const wxCursor& cursor)
{
// setting an invalid cursor is ok, it means that we don't have any special
// cursor
if ( cursor == m_cursor )
if ( m_cursor == cursor )
{
// no change
return FALSE;