]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/valgen.h
Don't use images for wxNotebook because of crash
[wxWidgets.git] / include / wx / valgen.h
index f80ced14c3f9b2a127bd52bd7d588574250a385b..fadac6da7e99a0a5e965130476d07ae2e0cf86ab 100644 (file)
@@ -56,6 +56,14 @@ protected:
   int*        m_pInt;
   wxString*   m_pString;
   wxArrayInt* m_pArrayInt;
+
+private:
+// Cannot use
+//  DECLARE_NO_COPY_CLASS(wxGenericValidator)
+// because copy constructor is explicitly declared above;
+// but no copy assignment operator is defined, so declare
+// it private to prevent the compiler from defining it:
+    wxGenericValidator& operator=(const wxGenericValidator&);
 };
 
 #endif