From 775e1c62bed423d6942318f46b637f00c3eac215 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 23 Oct 1999 06:42:24 +0000 Subject: [PATCH] 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 --- src/common/dobjcmn.cpp | 6 ++++++ 1 file changed, 6 insertions(+) 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(); -- 2.47.2