X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/88a7a4e10ed18f81a576dcd866cfbf02bf404c00..ff1dadae388b2f408874b80251d64d16d9d46280:/src/mgl/cursor.cpp diff --git a/src/mgl/cursor.cpp b/src/mgl/cursor.cpp index 97e4f7c7e2..709b59e34f 100644 --- a/src/mgl/cursor.cpp +++ b/src/mgl/cursor.cpp @@ -18,13 +18,12 @@ #ifndef WX_PRECOMP #include "wx/intl.h" + #include "wx/log.h" + #include "wx/utils.h" + #include "wx/hashmap.h" + #include "wx/module.h" #endif -#include "wx/module.h" -#include "wx/utils.h" -#include "wx/log.h" -#include "wx/hashmap.h" - #include "wx/mgl/private.h" @@ -37,7 +36,7 @@ class wxCursorRefData: public wxObjectRefData public: wxCursorRefData(); - ~wxCursorRefData(); + virtual ~wxCursorRefData(); MGLCursor *m_cursor; }; @@ -186,7 +185,7 @@ bool wxCursor::operator != (const wxCursor& cursor) const return (m_refData != cursor.m_refData); } -bool wxCursor::Ok() const +bool wxCursor::IsOk() const { return (m_refData != NULL); }