added support for width and flags in wxDateTime::Format()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5051 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1105,14 +1105,15 @@ wxString& wxString::operator<<(double d)
|
||||
/* static */
|
||||
wxString wxString::Format(const wxChar *pszFormat, ...)
|
||||
{
|
||||
va_list argptr;
|
||||
va_start(argptr, pszFormat);
|
||||
va_list argptr;
|
||||
va_start(argptr, pszFormat);
|
||||
|
||||
wxString s = FormatV(pszFormat, argptr);
|
||||
wxString s;
|
||||
s.PrintfV(pszFormat, argptr);
|
||||
|
||||
va_end(argptr);
|
||||
va_end(argptr);
|
||||
|
||||
return s;
|
||||
return s;
|
||||
}
|
||||
|
||||
/* static */
|
||||
|
Reference in New Issue
Block a user