X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0ef5b1dad1f5d18309d0fdc0b36ad383b58f1a2e..90fae9d2cfd82625c8c8279660237514470bc31a:/src/x11/cursor.cpp?ds=sidebyside diff --git a/src/x11/cursor.cpp b/src/x11/cursor.cpp index 354e8dc8dd..d89db5b450 100644 --- a/src/x11/cursor.cpp +++ b/src/x11/cursor.cpp @@ -41,6 +41,11 @@ public: WXCursor m_cursor; WXDisplay *m_display; + +private: + // There is no way to copy m_cursor so we can't implement a copy ctor + // properly. + wxDECLARE_NO_COPY_CLASS(wxCursorRefData); }; wxCursorRefData::wxCursorRefData() @@ -124,9 +129,9 @@ void wxCursor::InitFromStock( wxStockCursor cursorId ) #endif } -wxCursor::wxCursor(const wxString& name, - wxBitmapType type, - int hotSpotX, int hotSpotY) +wxCursor::wxCursor(const wxString& WXUNUSED(name), + wxBitmapType WXUNUSED(type), + int WXUNUSED(hotSpotX), int WXUNUSED(hotSpotY)) { wxFAIL_MSG( wxT("wxCursor creation from file not yet implemented") ); } @@ -147,9 +152,12 @@ wxGDIRefData *wxCursor::CreateGDIRefData() const return new wxCursorRefData; } -wxGDIRefData *wxCursor::CloneGDIRefData(const wxGDIRefData *data) const +wxGDIRefData * +wxCursor::CloneGDIRefData(const wxGDIRefData * WXUNUSED(data)) const { - return new wxCursorRefData(*wx_static_cast(const wxCursorRefData *, data)); + wxFAIL_MSG( wxS("Cloning cursors is not implemented in wxX11.") ); + + return new wxCursorRefData; } WXCursor wxCursor::GetCursor() const