X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/03e11df5470fd64d9d9a669d0b50b84c2d714736..36bd690299dc72d49c4a945fa467ac7ce2342019:/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; }