Fix date format specification in wxDatePickerCtrlGeneric with wxUSE_INTL=0

Conversion specification for preferred date representation is "%x", not "x".
This commit is contained in:
Artur Wieczorek 2018-11-10 14:59:27 +01:00
parent 41898c8dc4
commit f3b6e6d3b5

View File

@ -252,7 +252,7 @@ private:
return fmt;
#else // !wxUSE_INTL
return wxT("x");
return wxS("%x");
#endif // wxUSE_INTL/!wxUSE_INTL
}