]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/valtext.h
windows emit wxCreateWindowEvent
[wxWidgets.git] / include / wx / valtext.h
index b63fcaf4e231c9ba972faf71156429b02ae3904a..14af71c49397f0001fd6c0f3c67410d6d2fec193 100644 (file)
@@ -30,7 +30,7 @@ class WXDLLEXPORT wxTextValidator: public wxValidator
 {
 DECLARE_DYNAMIC_CLASS(wxTextValidator)
 public:
-  wxTextValidator(long style = wxFILTER_NONE, wxString *val = NULL);
+  wxTextValidator(long style = wxFILTER_NONE, wxString *val = (wxString *) NULL);
   wxTextValidator(const wxTextValidator& val);
 
   ~wxTextValidator();
@@ -39,7 +39,7 @@ public:
   // if you're passing a reference to a validator.
   // Another possibility is to always pass a pointer to a new validator
   // (so the calling code can use a copy constructor of the relevant class).
-  virtual wxValidator *Clone(void) const { return new wxTextValidator(*this); }
+  virtual wxObject *Clone(void) const { return new wxTextValidator(*this); }
   bool Copy(const wxTextValidator& val);
 
   // Called when the value in the window must be validated.