wxCustomDataObject::wxCustomDataObject(const wxDataFormat& format)
: wxDataObjectSimple(format)
{
+ m_data = (void *)NULL;
}
-
wxCustomDataObject::~wxCustomDataObject()
{
Free();
// wxTextDropTarget
// ----------------------------------------------------------------------------
+// NB: we can't use "new" in ctor initializer lists because this provokes an
+// internal compiler error with VC++ 5.0 (hey, even gcc compiles this!),
+// so use SetDataObject() instead
+
wxTextDropTarget::wxTextDropTarget()
- : wxDropTarget(new wxTextDataObject)
{
+ SetDataObject(new wxTextDataObject);
}
wxDragResult wxTextDropTarget::OnData(wxCoord x, wxCoord y, wxDragResult def)
// ----------------------------------------------------------------------------
wxFileDropTarget::wxFileDropTarget()
- : wxDropTarget(new wxFileDataObject)
{
+ SetDataObject(new wxFileDataObject);
}
wxDragResult wxFileDropTarget::OnData(wxCoord x, wxCoord y, wxDragResult def)