X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2b5f62a0b2db198609b45dec622a018dae37008e..106844da7dd52e6423060f6ed08260f0ec896b31:/src/msw/listctrl.cpp diff --git a/src/msw/listctrl.cpp b/src/msw/listctrl.cpp index 4b6191aa84..15356ad7d9 100644 --- a/src/msw/listctrl.cpp +++ b/src/msw/listctrl.cpp @@ -119,12 +119,7 @@ private: #if wxUSE_WCHAR_T if ( (item.mask & LVIF_TEXT) && item.pszText ) { -#ifdef __WXWINE__ - // FIXME - m_buf = new wxWC2WXbuf(wxConvLocal.cWC2WX((const __wchar_t* ) item.pszText)); -#else m_buf = new wxWC2WXbuf(wxConvLocal.cWC2WX(item.pszText)); -#endif m_item->pszText = (wxChar*)m_buf->data(); } else @@ -137,6 +132,8 @@ private: #endif // wxUSE_UNICODE/!wxUSE_UNICODE LV_ITEM *m_item; + + DECLARE_NO_COPY_CLASS(wxLV_ITEM) }; /////////////////////////////////////////////////////// @@ -183,6 +180,8 @@ public: if (attr) delete attr; }; + + DECLARE_NO_COPY_CLASS(wxListItemInternalData) }; // Get the internal data structure