accept \r as a delimiter when parsing dates (bug 684617)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19540 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -3237,7 +3237,7 @@ const wxChar *wxDateTime::ParseDate(const wxChar *date)
|
||||
|
||||
// tokenize the string
|
||||
size_t nPosCur = 0;
|
||||
static const wxChar *dateDelimiters = _T(".,/-\t\n ");
|
||||
static const wxChar *dateDelimiters = _T(".,/-\t\r\n ");
|
||||
wxStringTokenizer tok(p, dateDelimiters);
|
||||
while ( tok.HasMoreTokens() )
|
||||
{
|
||||
|
Reference in New Issue
Block a user