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:
Vadim Zeitlin
2001-04-17 22:34:02 +00:00
parent 389b961e23
commit 9f96b16267

View File

@@ -1151,7 +1151,7 @@ wxString wxString::Format(const wxChar *pszFormat, ...)
wxString wxString::FormatV(const wxChar *pszFormat, va_list argptr)
{
wxString s;
s.Printf(pszFormat, argptr);
s.PrintfV(pszFormat, argptr);
return s;
}