]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/cursor.cpp
Updated font dialog constructors to use a reference to the font data
[wxWidgets.git] / src / msw / cursor.cpp
index bbe9e4662c0945964a3c097a4dcafb26c5f37ebe..ffa2a6434cfe35520979fa7634b310770e8cf432 100644 (file)
@@ -38,6 +38,7 @@
 #endif
 
 #include "wx/module.h"
+#include "wx/image.h"
 #include "wx/msw/private.h"
 #ifndef __WXMICROWIN__
 #include "wx/msw/dib.h"
@@ -187,7 +188,7 @@ wxCursor::wxCursor( const wxImage & image )
     wxCursorRefData *refData = new wxCursorRefData;
     m_refData = refData;
     refData->m_hCursor = (WXHCURSOR) CreateCursor ( wxGetInstance(), hotSpotX, hotSpotY, w, h, /*AND*/ maskBits, /*XOR*/ bits   );
-  
+
     delete [] bits ;
     delete [] maskBits;
 
@@ -383,6 +384,11 @@ wxCursor::wxCursor(int cursor_type)
       refData->m_hCursor = (WXHCURSOR) LoadCursor(wxGetInstance(), wxT("wxCURSOR_BLANK"));
       break;
     }
+    case wxCURSOR_RIGHT_ARROW:
+    {
+        refData->m_hCursor = (WXHCURSOR) LoadCursor(wxGetInstance(), wxT("wxCURSOR_RIGHT_ARROW"));
+        break;
+    }
     default:
     case wxCURSOR_ARROW:
       refData->m_hCursor = (WXHCURSOR) LoadCursor((HINSTANCE) NULL, IDC_ARROW);