X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/03e11df5470fd64d9d9a669d0b50b84c2d714736..65608e3bb0a1efea84af1aafbf3e05a05285766e:/src/common/string.cpp diff --git a/src/common/string.cpp b/src/common/string.cpp index 4fd4c02a14..b0550b816f 100644 --- a/src/common/string.cpp +++ b/src/common/string.cpp @@ -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; }