]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dobjcmn.cpp
Implement hint cursor for resizable columns
[wxWidgets.git] / src / common / dobjcmn.cpp
index d9327709c5bd5b8447cc9e15d0f5f59d3bc7d4ee..df021af849a3669ca8404e22c730b61e720c4e65 100644 (file)
@@ -109,7 +109,7 @@ wxDataObjectComposite::GetObject(const wxDataFormat& format) const
         node = node->GetNext();
     }
 
-    return (wxDataObjectSimple *)NULL;
+    return NULL;
 }
 
 void wxDataObjectComposite::Add(wxDataObjectSimple *dataObject, bool preferred)
@@ -449,7 +449,7 @@ void wxCustomDataObject::Free()
 {
     delete [] (char*)m_data;
     m_size = 0;
-    m_data = (void*)NULL;
+    m_data = NULL;
 }
 
 size_t wxCustomDataObject::GetDataSize() const