AIX linking fix (declare wxDataObject dtor)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16132 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-07-10 14:17:58 +00:00
parent 580d78b34b
commit 1eaf587e21
2 changed files with 9 additions and 3 deletions

View File

@@ -21,9 +21,7 @@
class wxDataObject : public wxDataObjectBase class wxDataObject : public wxDataObjectBase
{ {
public: public:
#ifdef __DARWIN__ virtual ~wxDataObject();
~wxDataObject() { }
#endif
}; };
#endif //_WX_MOTIF_DATAOBJ_H_ #endif //_WX_MOTIF_DATAOBJ_H_

View File

@@ -145,6 +145,14 @@ void wxDataFormat::PrepareFormats()
g_fileAtom = XInternAtom( (Display*) wxGetDisplay(), "file:ALL", FALSE ); g_fileAtom = XInternAtom( (Display*) wxGetDisplay(), "file:ALL", FALSE );
} }
// ----------------------------------------------------------------------------
// wxDataObject
// ----------------------------------------------------------------------------
wxDataObject::~wxDataObject()
{
}
#if 0 #if 0
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------