X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e1b435afad91408d08e158a8f107981045bd8d35..59840ba3b16e4baf3228dd79c6b7ae40b55cf488:/include/wx/dataobj.h?ds=inline diff --git a/include/wx/dataobj.h b/include/wx/dataobj.h index 19563d31a4..82c501598f 100644 --- a/include/wx/dataobj.h +++ b/include/wx/dataobj.h @@ -79,6 +79,8 @@ public: #include "wx/motif/dataform.h" #elif defined(__WXGTK__) #include "wx/gtk/dataform.h" +#elif defined(__WXX11__) + #include "wx/x11/dataform.h" #elif defined(__WXMAC__) #include "wx/mac/dataform.h" #elif defined(__WXPM__) @@ -159,6 +161,8 @@ public: #include "wx/msw/ole/dataobj.h" #elif defined(__WXMOTIF__) #include "wx/motif/dataobj.h" +#elif defined(__WXX11__) + #include "wx/x11/dataobj.h" #elif defined(__WXGTK__) #include "wx/gtk/dataobj.h" #elif defined(__WXMAC__) @@ -254,7 +258,7 @@ class WXDLLEXPORT wxDataObjectComposite : public wxDataObject { public: // ctor - wxDataObjectComposite() { m_preferred = 0; } + wxDataObjectComposite(); // add data object (it will be deleted by wxDataObjectComposite, hence it // must be allocated on the heap) whose format will become the preferred @@ -467,6 +471,7 @@ private: { public: wxString GetURL() const { return GetText(); } + void SetURL(const wxString& url) { SetText(url); } }; #endif // __WXMSW__/!__WXMSW__