Compilation fix.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24398 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
044bbeb0b7
commit
7e91413a02
@ -143,13 +143,13 @@ wxCursor::wxCursor(const wxImage & image)
|
||||
int hotSpotX;
|
||||
int hotSpotY;
|
||||
|
||||
if (image.HasOption(wxCUR_HOTSPOT_X))
|
||||
hotSpotX = image.GetOptionInt(wxCUR_HOTSPOT_X);
|
||||
if (image.HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_X))
|
||||
hotSpotX = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X);
|
||||
else
|
||||
hotSpotX = 0;
|
||||
|
||||
if (image.HasOption(wxCUR_HOTSPOT_Y))
|
||||
hotSpotY = image.GetOptionInt(wxCUR_HOTSPOT_Y);
|
||||
if (image.HasOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y))
|
||||
hotSpotY = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y);
|
||||
else
|
||||
hotSpotY = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user