X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/88b1927cb3da30ac43126d57bff6ccd5b5822c73..bbf8fc5391b2458d630d29a794df99c8e681e6eb:/include/wx/msw/ole/dataobj.h diff --git a/include/wx/msw/ole/dataobj.h b/include/wx/msw/ole/dataobj.h index 123f390ede..dd2d0cf503 100644 --- a/include/wx/msw/ole/dataobj.h +++ b/include/wx/msw/ole/dataobj.h @@ -37,11 +37,18 @@ public: void SetAutoDelete(); // return TRUE if we support this format in "Get" direction - bool IsSupportedFormat(const wxDataFormat& format) const; + bool IsSupportedFormat(const wxDataFormat& format) const + { return wxDataObjectBase::IsSupported(format, Get); } +#ifdef __WXDEBUG__ // function to return symbolic name of clipboard format (for debug messages) static const char *GetFormatName(wxDataFormat format); + #define wxGetFormatName(format) wxDataObject::GetFormatName(format) +#else // !Debug + #define wxGetFormatName(format) "" +#endif // Debug/!Debug + private: IDataObject *m_pIDataObject; // pointer to the COM interface };