]> git.saurik.com Git - wxWidgets.git/commitdiff
Compilation fix for !WXWN_COMPATIBILITY_2_4.
authorMattia Barbon <mbarbon@cpan.org>
Sat, 8 Nov 2003 18:45:01 +0000 (18:45 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Sat, 8 Nov 2003 18:45:01 +0000 (18:45 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24481 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/gtk/cursor.cpp
src/gtk1/cursor.cpp

index 54bd0e23a3f612432b3faeaf75dfb88531ab6c0b..4360b9748d770c3126796a878bdf2550d3ebeada 100644 (file)
@@ -268,13 +268,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;
 
index 54bd0e23a3f612432b3faeaf75dfb88531ab6c0b..4360b9748d770c3126796a878bdf2550d3ebeada 100644 (file)
@@ -268,13 +268,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;