+
+ This function is automatically called by wxWidgets when creating a wxWindow-derived
+ class instance which takes a wxValidator reference.
+
+ E.g.
+ @code
+ new wxTextCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0,
+ wxTextValidator(wxFILTER_ALPHA, &g_data.m_string));
+ @endcode
+ will automatically link the wxTextValidator instance with the wxTextCtrl
+ instance.