]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/valtext.h
Added m_isOpened variable to simulate opening/closing
[wxWidgets.git] / include / wx / valtext.h
index cf15da9903600d7fcf9467f9799cd4f3701273d8..42b08aa0bfd05a18c745461db2ff85031649970f 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     29/01/98
 // RCS-ID:      $Id$
 // Copyright:   (c) 1998 Julian Smart
-// Licence:    wxWindows license
+// Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef _WX_VALTEXTH__
@@ -95,6 +95,14 @@ protected:
 
         return TRUE;
     }
+
+private:
+// Cannot use
+//  DECLARE_NO_COPY_CLASS(wxTextValidator)
+// 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:
+    wxTextValidator& operator=(const wxTextValidator&);
 };
 
 #endif