From: Robin Dunn Date: Sat, 23 Oct 1999 06:42:24 +0000 (+0000) Subject: Added missing constructor for wxCustomDataObject so the DLL would X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/775e1c62bed423d6942318f46b637f00c3eac215 Added missing constructor for wxCustomDataObject so the DLL would link. It's just a guess though so it should be checked. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4149 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/dobjcmn.cpp b/src/common/dobjcmn.cpp index 6a40f0b1d9..95cfb73bce 100644 --- a/src/common/dobjcmn.cpp +++ b/src/common/dobjcmn.cpp @@ -229,6 +229,12 @@ void wxFileDataObjectBase::SetFilenames(const wxChar* filenames) // wxCustomDataObject // ---------------------------------------------------------------------------- +wxCustomDataObject::wxCustomDataObject(const wxDataFormat& format) + : wxDataObjectSimple(format) +{ +} + + wxCustomDataObject::~wxCustomDataObject() { Free();