]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/cursor.cpp
Added wxDataViewColumn
[wxWidgets.git] / src / msw / cursor.cpp
index 395909699d046df711751c804b79969de23486b6..3a6a3e9e80849b49cae25b425bf97ef49f171915 100644 (file)
@@ -209,11 +209,15 @@ wxCursor::wxCursor(const wxImage& image)
     HCURSOR hcursor = wxBitmapToHCURSOR( wxBitmap(imageSized),
                                          hotSpotX, hotSpotY );
 
+#if wxUSE_WXDIB
     if ( !hcursor )
     {
         wxLogWarning(_("Failed to create cursor."));
         return;
     }
+#else
+    HCURSOR hcursor = 0;
+#endif                                         
 
     m_refData = new wxCursorRefData(hcursor, true /* delete it later */);
 }