From 1a97976a450be36d74d20bd85a314d724c83ac8a Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 31 Oct 2003 15:16:25 +0000 Subject: [PATCH] don't use deprecated symbols git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24372 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/cursor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/msw/cursor.cpp b/src/msw/cursor.cpp index e36d2f91ff..c8e43a4d48 100644 --- a/src/msw/cursor.cpp +++ b/src/msw/cursor.cpp @@ -179,8 +179,8 @@ wxCursor::wxCursor(const wxImage& image) const int w = wxCursorRefData::GetStandardWidth(); const int h = wxCursorRefData::GetStandardHeight(); - const int hotSpotX = image.GetOptionInt(wxCUR_HOTSPOT_X); - const int hotSpotY = image.GetOptionInt(wxCUR_HOTSPOT_Y); + const int hotSpotX = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X); + const int hotSpotY = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y); wxASSERT_MSG( hotSpotX >= 0 && hotSpotX < w && hotSpotY >= 0 && hotSpotY < h, -- 2.47.2