From: David Webster Date: Thu, 16 Mar 2000 15:53:49 +0000 (+0000) Subject: compile bug fixed in SetCursor X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/13588544c5fd50e15240c30b0d0e0b533ffe7d1a compile bug fixed in SetCursor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index e3c669216f..b6a2178167 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -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;