git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31848
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#include "wx/dateevt.h"
#include "wx/generic/datectrl.h"
+#include "wx/arrstr.h"
#include "wx/calctrl.h"
#include "wx/popupwin.h"
#include "wx/renderer.h"
if (m_txt)
{
- wxStringList valList;
+ wxArrayString valList;
wxChar c;
for (c='0'; c <= '9'; c++)
valList.Add(wxString(c, 1));
valList.Add(wxString(*p++, 1));
}
wxTextValidator tv(wxFILTER_INCLUDE_CHAR_LIST);
- tv.SetIncludeList(valList);
+ tv.SetIncludes(valList);
m_txt->SetValidator(tv);