wxString::FormatV() fix (bug 416853)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9780 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1151,7 +1151,7 @@ wxString wxString::Format(const wxChar *pszFormat, ...)
|
|||||||
wxString wxString::FormatV(const wxChar *pszFormat, va_list argptr)
|
wxString wxString::FormatV(const wxChar *pszFormat, va_list argptr)
|
||||||
{
|
{
|
||||||
wxString s;
|
wxString s;
|
||||||
s.Printf(pszFormat, argptr);
|
s.PrintfV(pszFormat, argptr);
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user