define (empty) ~wxDataObject everywhere: apparently it's needed for AIX and not only Darwin
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17967 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -22,10 +22,8 @@ class wxDataObject : public wxDataObjectBase
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxDataObject();
|
wxDataObject();
|
||||||
#ifdef __DARWIN__
|
virtual ~wxDataObject();
|
||||||
virtual ~wxDataObject() { }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
|
virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -22,10 +22,8 @@ class wxDataObject : public wxDataObjectBase
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxDataObject();
|
wxDataObject();
|
||||||
#ifdef __DARWIN__
|
virtual ~wxDataObject();
|
||||||
virtual ~wxDataObject() { }
|
|
||||||
#endif
|
|
||||||
|
|
||||||
virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
|
virtual bool IsSupportedFormat( const wxDataFormat& format, Direction dir = Get ) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -158,6 +158,11 @@ wxDataObject::wxDataObject()
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wxDataObject::~wxDataObject()
|
||||||
|
{
|
||||||
|
// dtor is empty but needed for Darwin and AIX -- otherwise it doesn't link
|
||||||
|
}
|
||||||
|
|
||||||
bool wxDataObject::IsSupportedFormat(const wxDataFormat& format, Direction dir) const
|
bool wxDataObject::IsSupportedFormat(const wxDataFormat& format, Direction dir) const
|
||||||
{
|
{
|
||||||
size_t nFormatCount = GetFormatCount(dir);
|
size_t nFormatCount = GetFormatCount(dir);
|
||||||
|
@@ -158,6 +158,11 @@ wxDataObject::wxDataObject()
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wxDataObject::~wxDataObject()
|
||||||
|
{
|
||||||
|
// dtor is empty but needed for Darwin and AIX -- otherwise it doesn't link
|
||||||
|
}
|
||||||
|
|
||||||
bool wxDataObject::IsSupportedFormat(const wxDataFormat& format, Direction dir) const
|
bool wxDataObject::IsSupportedFormat(const wxDataFormat& format, Direction dir) const
|
||||||
{
|
{
|
||||||
size_t nFormatCount = GetFormatCount(dir);
|
size_t nFormatCount = GetFormatCount(dir);
|
||||||
|
Reference in New Issue
Block a user