added wxMenuITemBase copy ctor decl apparently needed under FreeBSD

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5553 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2000-01-20 22:34:48 +00:00
parent d3a809c7dc
commit 7af206c1c4

View File

@ -111,6 +111,12 @@ protected:
// some compilers need a default constructor here, do not remove
wxMenuItemBase() { }
private:
// and, if we have one ctor, compiler won't generate a default copy one, so
// declare them ourselves - but don't implement as they shouldn't be used
wxMenuItemBase(const wxMenuItemBase& item);
wxMenuItemBase& operator=(const wxMenuItemBase& item);
};
// ----------------------------------------------------------------------------