X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a8e24848f67a655c6845420caf00a29100e38d9f..438959cca892a7651634cc3a7aad4819ac49b23c:/include/wx/msw/ole/dataobj.h diff --git a/include/wx/msw/ole/dataobj.h b/include/wx/msw/ole/dataobj.h index 0cb65ba03c..1b33e35ed9 100644 --- a/include/wx/msw/ole/dataobj.h +++ b/include/wx/msw/ole/dataobj.h @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: msw/ole/dataobj.h +// Name: wx/msw/ole/dataobj.h // Purpose: declaration of the wxDataObject class // Author: Vadim Zeitlin // Modified by: @@ -22,7 +22,7 @@ struct IDataObject; // wxDataObject is a "smart" and polymorphic piece of data. // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxDataObject : public wxDataObjectBase +class WXDLLIMPEXP_CORE wxDataObject : public wxDataObjectBase { public: // ctor & dtor @@ -59,7 +59,7 @@ public: #define wxGetFormatName(format) wxDataObject::GetFormatName(format) #else // !Debug - #define wxGetFormatName(format) _T("") + #define wxGetFormatName(format) wxT("") #endif // Debug/!Debug // they need to be accessed from wxIDataObject, so made them public, // or wxIDataObject friend @@ -73,7 +73,7 @@ public: private: IDataObject *m_pIDataObject; // pointer to the COM interface - DECLARE_NO_COPY_CLASS(wxDataObject) + wxDECLARE_NO_COPY_CLASS(wxDataObject); }; #endif //_WX_MSW_OLE_DATAOBJ_H