X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ce00f59b5b169752d2f05ce3bb1a88ddc1b38b4c..58ce18f2fdadecffb21e27555115af708325cf18:/include/wx/object.h diff --git a/include/wx/object.h b/include/wx/object.h index 80fbae4d2b..5c14734fdd 100644 --- a/include/wx/object.h +++ b/include/wx/object.h @@ -422,6 +422,12 @@ protected: private: // our refcount: int m_count; + + // It doesn't make sense to copy the reference counted objects, a new ref + // counter should be created for a new object instead and compilation + // errors in the code using wxRefCounter due to the lack of copy ctor often + // indicate a problem, e.g. a forgotten copy ctor implementation somewhere. + wxDECLARE_NO_COPY_CLASS(wxRefCounter); }; // ----------------------------------------------------------------------------